matter.c

Cross-platform minimalist libc
git clone git://git.finwo.net/lib/matter.c
Log | Files | Refs | README | LICENSE

malloc.h (208B)


      1 #ifndef _MALLOC_H_
      2 #define _MALLOC_H_
      3 
      4 #include <stddef.h>
      5 
      6 void *malloc(size_t n);
      7 void free(void *p);
      8 void *realloc(void *ptr, size_t size);
      9 void *calloc(size_t nelem, size_t elsize);
     10 
     11 #endif // _MALLOC_H_