浏览代码

Add missing prerequisite include

tags/v0.9.3
Michael Brown 18 年前
父节点
当前提交
b02a564297
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      src/include/stdlib.h

+ 2
- 0
src/include/stdlib.h 查看文件

@@ -1,6 +1,8 @@
1 1
 #ifndef STDLIB_H
2 2
 #define STDLIB_H
3 3
 
4
+#include <stdint.h>
5
+
4 6
 extern unsigned long strtoul ( const char *p, char **endp, int base );
5 7
 extern void * realloc ( void *old_ptr, size_t new_size );
6 8
 extern void * malloc ( size_t size );

正在加载...
取消
保存