diff options
Diffstat (limited to 'src/stdlib.c')
-rw-r--r-- | src/stdlib.c | 16 |
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]; |