Quellcode durchsuchen

Include realloc() in dmmlib.h

Ioannis Koutras vor 13 Jahren
Ursprung
Commit
190fa09c88
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      include/dmmlib/dmmlib.h

+ 2 - 1
include/dmmlib/dmmlib.h

@@ -17,8 +17,9 @@
 
 #ifndef DMMLIB_H
 #define DMMLIB_H
-#include <dmmlib/heap.h>
 #include "dmm_config.h"
+#include <dmmlib/heap.h>
+#include <dmmlib/custom_realloc.h>
 
 void * custom_ahmalloc(allocator_t* allocator, heap_t* heap, size_t size);
 void custom_ahfree(allocator_t *allocator, heap_t* heap, void *ptr);