summaryrefslogtreecommitdiff
path: root/src/stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib.c')
-rw-r--r--src/stdlib.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/stdlib.c b/src/stdlib.c
new file mode 100644
index 0000000..9a9425f
--- /dev/null
+++ b/src/stdlib.c
@@ -0,0 +1,7 @@
+#include "stdlib.h"
+
+char *itoa( int v, char *s, int base )
+{
+ //~ *s = '\0';
+ return s;
+}