diff options
Diffstat (limited to 'src/libc/stdlib/stdlib.c')
-rw-r--r-- | src/libc/stdlib/stdlib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libc/stdlib/stdlib.c b/src/libc/stdlib/stdlib.c index 1dee760..2a410d0 100644 --- a/src/libc/stdlib/stdlib.c +++ b/src/libc/stdlib/stdlib.c @@ -125,3 +125,7 @@ double strtod(const char *restrict s, char **restrict end) { (void)s; (void)end; __libc_panic("unimplemented"); } + +int rand(void) { + __libc_panic("unimplemented"); +} |