Change "stddef.h" to <stddef.h>
authorBen Pfaff <blp@cs.stanford.edu>
Mon, 13 Sep 2004 02:14:24 +0000 (02:14 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Mon, 13 Sep 2004 02:14:24 +0000 (02:14 +0000)
src/lib/stdlib.h
src/lib/string.h

index d2f9bba721a83ea69abd635685b304200dfdd61f..9455c6a20f3280b56e352743c0685ac6ef2bca91 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef __LIB_STDLIB_H
 #define __LIB_STDLIB_H
 
-#include "stddef.h"
+#include <stddef.h>
 
 int atoi (const char *);
 
index 05b957f297ae78454738e9c41a2cff7e97ee5a17..1fff82a060c32080a99810c4d9413dc97a441910 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef __LIB_STRING_H
 #define __LIB_STRING_H
 
-#include "stddef.h"
+#include <stddef.h>
 
 /* Standard. */
 void *memcpy (void *, const void *, size_t);