mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-03 12:14:40 +03:00
10 lines
187 B
C
10 lines
187 B
C
|
/*
|
||
|
some standart libC helper functions
|
||
|
*/
|
||
|
|
||
|
static void* malloc(DWORD size);
|
||
|
static void free(void *memory);
|
||
|
static void* realloc(void *old_mem,DWORD new_size);
|
||
|
static void exit(int c);
|
||
|
|