mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
6 lines
127 B
C
6 lines
127 B
C
|
#include <stdlib.h>
|
||
|
#include <sys/ksys.h>
|
||
|
|
||
|
void *realloc(void *ptr, size_t newsize) {
|
||
|
return _ksys_realloc(ptr, newsize);
|
||
|
}
|