]> git.lizzy.rs Git - nothing.git/commitdiff
Fix cmake compilation
authorrexim <reximkut@gmail.com>
Sat, 11 Jan 2020 19:19:40 +0000 (02:19 +0700)
committerrexim <reximkut@gmail.com>
Sat, 11 Jan 2020 19:19:40 +0000 (02:19 +0700)
src/dynarray.h
src/ring_buffer.h

index 1a8a5ec2604a42c5a5cd2044fb9ed1da10fce907..a6476f83a31062fd5e6058be33870a54dbb45e3d 100644 (file)
@@ -4,6 +4,8 @@
 #include <stdlib.h>
 #include <stdbool.h>
 #include <stdint.h>
+#include "system/memory.h"
+#include "system/stacktrace.h"
 
 #define DYNARRAY_CAPACITY 256
 
index 8728e21630d4b35890cef0cb139138170241ff39..a174974440d645176dcfcb10d5e4f10131ee40c6 100644 (file)
@@ -7,6 +7,8 @@
 #include <stdint.h>
 #include <string.h>
 
+#include "system/memory.h"
+
 typedef void (*RingBufferDtor)(void *element);
 
 typedef struct {