浏览代码

include stdint.h for uintptr_t

Due to a variation of compiling options, stdint.h might not be included in
debug.c, so it has to be defined explicitly.
Ioannis Koutras 12 年之前
父节点
当前提交
770f024aa5
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/debug.c

+ 1 - 0
src/debug.c

@@ -26,6 +26,7 @@
 
 #include "dmmlib_trace.h"
 #include <stdbool.h>
+#include <stdint.h>
 #include "dmmlib/dmmlib.h"
 #include "locks.h"