kolibrios/programs/emulator/kwine/lib/stdlib.h
Rustem Gimadutdinov (rgimad) bdd9a3634d KWINE v0.0.3
into msvcrt.dll added:
 - putchar
 - strchr
 - strrchr
 - strcpy
 - strncpy
 - memset
 - memcpy
 - memcmp
 - time
 - mktime
 - localtime
 - difftime
 - srand
 - rand
new samples
 - rnd_arr1.exe
 - string2.exe

git-svn-id: svn://kolibrios.org@7894 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-05-07 22:14:53 +00:00

12 lines
191 B
C

#ifndef _STDLIB_H
#define _STDLIB_H
int rand(void);
void srand(unsigned int seed);
void *malloc(size_t size);
int free(void *mem);
void* realloc(void *mem, size_t size);
#endif