Subversion Repositories Kolibri OS

Rev

Rev 8793 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8687 turbocat 1
#include 
2
#include 
3
 
9765 turbocat 4
void* realloc(void* ptr, size_t newsize)
5
{
8687 turbocat 6
    return _ksys_realloc(ptr, newsize);
7
}