diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2015-02-28 20:46:37 -0500 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2015-02-28 20:46:37 -0500 |
| commit | e81f651b15be15624d7184e1823bf5b623f11604 (patch) | |
| tree | fda3d16b0245dd83f367f523042f02a0e1b14db0 /libc/include | |
| parent | 2dc45e8cac33313e847f6097cbe2ba3bb3ceab2a (diff) | |
| download | kappa-e81f651b15be15624d7184e1823bf5b623f11604.zip kappa-e81f651b15be15624d7184e1823bf5b623f11604.tar.gz kappa-e81f651b15be15624d7184e1823bf5b623f11604.tar.bz2 kappa-e81f651b15be15624d7184e1823bf5b623f11604.tar.xz | |
stuff
Diffstat (limited to 'libc/include')
| -rw-r--r-- | libc/include/stdlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index ffe9073..95c7915 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -3,6 +3,7 @@ #include <stddef.h> #include <stdio.h> +#include <stdint.h> /* this is by no means standards-compliant... but who cares? :P */ @@ -14,8 +15,9 @@ char* itoa(int val, int base); #define MIN(x,y) ((x<y)?x:y) #define MAX(x,y) ((x>y)?x:y) +uint64_t rand64(void); unsigned int rand(void); -void srand(unsigned int); +void srand(uint64_t); int abs(int); void *malloc(size_t); int snprintf(char*, int, const char*, ...); |