Browse Source

Add missing prerequisite include

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
b02a564297
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/include/stdlib.h

+ 2
- 0
src/include/stdlib.h View File

@@ -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 );

Loading…
Cancel
Save