aboutsummaryrefslogtreecommitdiff
path: root/libc/include/stdlib.h
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2015-02-05 20:59:33 -0500
committerFranklin Wei <frankhwei536@gmail.com>2015-02-05 20:59:33 -0500
commite63e7123cdaac69f5b7216319681eea97e7aeb64 (patch)
tree19393f7a88bda8e226c91a7530b6e1d958e22c11 /libc/include/stdlib.h
parent601080812f292e8f007592d621d417693b526c6e (diff)
downloadkappa-e63e7123cdaac69f5b7216319681eea97e7aeb64.zip
kappa-e63e7123cdaac69f5b7216319681eea97e7aeb64.tar.gz
kappa-e63e7123cdaac69f5b7216319681eea97e7aeb64.tar.bz2
kappa-e63e7123cdaac69f5b7216319681eea97e7aeb64.tar.xz
add stdlib
Diffstat (limited to 'libc/include/stdlib.h')
-rw-r--r--libc/include/stdlib.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h
new file mode 100644
index 0000000..146b4b8
--- /dev/null
+++ b/libc/include/stdlib.h
@@ -0,0 +1,4 @@
+/* this is by no means standards-compliant... but who cares? :P */
+
+/* NOT reentrant! */
+char* itoa(int val, int base);