diff options
author | dzwdz | 2023-12-25 18:36:02 +0100 |
---|---|---|
committer | dzwdz | 2023-12-25 18:36:02 +0100 |
commit | 4e1a6f1b3c543b9fbeb882a9e97551f7c58ca65a (patch) | |
tree | 8c2048c751db8b98e3033a61b6ad5bbd11a303a9 /src/libc/include/stdlib.h | |
parent | 64d4330810a37dd9c41a82ae6cc420850ca1e7da (diff) |
ports: curl :^)
had to do a lot of hacky stuff, but it's there.
worked on this on and off for a while now
Diffstat (limited to 'src/libc/include/stdlib.h')
-rw-r--r-- | src/libc/include/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libc/include/stdlib.h b/src/libc/include/stdlib.h index c3fd4bd..61d9734 100644 --- a/src/libc/include/stdlib.h +++ b/src/libc/include/stdlib.h @@ -36,3 +36,5 @@ double strtod(const char *restrict s, char **restrict end); void qsort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *a, const void *b)); void qsort_r(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *, void *), void *arg); void* bsearch(const void* key, const void* base_ptr, size_t nmemb, size_t size, int (*compare)(const void*, const void*)); + +int rand(void); |