aboutsummaryrefslogtreecommitdiff
path: root/libc/include/stdlib.h
blob: 91f16f3f2b37a656fa8a8474d5c0a7c86e724293 (plain)
1
2
3
4
5
6
7
8
9
10
/* this is by no means standards-compliant... but who cares? :P */

/* NOT reentrant! */
char* itoa(int val, int base);

#define RAND_MAX ((1U << 31) - 1)

unsigned int rand(void);
void srand(unsigned int);
int abs(int);