aboutsummaryrefslogtreecommitdiffstats
path: root/src/stdlib.c
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-01-23 08:23:46 -0500
committerClyne Sullivan <tullivan99@gmail.com>2018-01-23 08:23:46 -0500
commitbf230d6a745e61d72cd364bc6f0bea282671b634 (patch)
tree5aa04d7efa663a25c0ba7fe97d464de8feb05569 /src/stdlib.c
parenta93e506b78b7379e14c23ae80a5281485897faee (diff)
interpreter integration
Diffstat (limited to 'src/stdlib.c')
-rw-r--r--src/stdlib.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/stdlib.c b/src/stdlib.c
index e7bf622..fa2806b 100644
--- a/src/stdlib.c
+++ b/src/stdlib.c
@@ -6,6 +6,22 @@ void _exit(int code)
for (;;);
}
+int _getpid(int pid)
+{
+ (void)pid;
+ return 0;
+}
+
+void _kill(int pid)
+{
+ (void)pid;
+}
+
+void _sbrk(void)
+{
+
+}
+
char *itoa(int n, int base)
{
static char buf[16];