From 4e1a6f1b3c543b9fbeb882a9e97551f7c58ca65a Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 25 Dec 2023 18:36:02 +0100 Subject: ports: curl :^) had to do a lot of hacky stuff, but it's there. worked on this on and off for a while now --- src/libc/stdlib/stdlib.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/libc/stdlib/stdlib.c') 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"); +} -- cgit v1.2.3