forked from KolibriOS/kolibrios
Rustem Gimadutdinov (rgimad)
bdd9a3634d
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
12 lines
191 B
C
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 |