浏览代码

Include realloc() in dmmlib.h

Ioannis Koutras 13 年之前
父节点
当前提交
190fa09c88
共有 1 个文件被更改,包括 2 次插入1 次删除
  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);