Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.         some standart libC helper functions
  3. */
  4.  
  5. static void* malloc(DWORD size);
  6. static void free(void *memory);
  7. static void* realloc(void *old_mem,DWORD new_size);
  8. static void exit(int c);
  9.  
  10.