kolibrios-fun/programs/games/foxhunt/system/stdlib.h
Albom 49560506b1 foxhunt game version 0.2
git-svn-id: svn://kolibrios.org@4556 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-02-04 18:35:58 +00:00

15 lines
308 B
C

#define RAND_MAX 0x7FFFU
#define isspace(c) ((c)==' ')
#define abs(i) (((i)<0)?(-(i)):(i))
#define random(num) ((rand()*(num))/((RAND_MAX+1)))
void* malloc(unsigned size);
void free(void* pointer);
void* realloc(void* pointer, unsigned size);
void srand (unsigned seed);
int rand (void);