summaryrefslogtreecommitdiffstats
path: root/src/include/stdlib.h
diff options
context:
space:
mode:
authorMichael Brown2005-04-30 15:48:48 +0200
committerMichael Brown2005-04-30 15:48:48 +0200
commit70567c51a218a03137a4878a29b7928779243fc0 (patch)
tree185dec13b1cc0549e2bac309c73f6175b5ff8cd4 /src/include/stdlib.h
parentparse_url() is void. (diff)
downloadipxe-70567c51a218a03137a4878a29b7928779243fc0.tar.gz
ipxe-70567c51a218a03137a4878a29b7928779243fc0.tar.xz
ipxe-70567c51a218a03137a4878a29b7928779243fc0.zip
Moved strtoul prototype into stdlib.h for consistency
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r--src/include/stdlib.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h
new file mode 100644
index 00000000..4dcabfb6
--- /dev/null
+++ b/src/include/stdlib.h
@@ -0,0 +1,6 @@
+#ifndef STDLIB_H
+#define STDLIB_H
+
+extern unsigned long strtoul ( const char *p, const char **endp, int base );
+
+#endif /* STDLIB_H */