voron

experimental ARM OS
git clone git://git.2f30.org/voron
Log | Files | Refs | README | LICENSE

alloc.h (237B)


      1 #ifndef __ALLOC_H
      2 #define __ALLOC_H
      3 
      4 #include <inttypes.h>
      5 
      6 void *kmalloc(size_t size);
      7 void kfree(void *addr);
      8 void *krealloc(void *addr, size_t size);
      9 void *kcalloc(size_t nmemb, size_t size);
     10 void kdump(void);
     11 
     12 #endif	/* __ALLOC_H */