aboutsummaryrefslogtreecommitdiff
path: root/src/include/stdlib.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2005-04-30 13:48:48 +0000
committerMichael Brown <mcb30@etherboot.org>2005-04-30 13:48:48 +0000
commit70567c51a218a03137a4878a29b7928779243fc0 (patch)
tree185dec13b1cc0549e2bac309c73f6175b5ff8cd4 /src/include/stdlib.h
parent044b20385b5bdb3eb423730fe017e58ce428d6e6 (diff)
downloadipxe-70567c51a218a03137a4878a29b7928779243fc0.zip
ipxe-70567c51a218a03137a4878a29b7928779243fc0.tar.gz
ipxe-70567c51a218a03137a4878a29b7928779243fc0.tar.bz2
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 0000000..4dcabfb
--- /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 */