voron

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

mm.h (143B)


      1 #ifndef __MM_H
      2 #define __MM_H
      3 
      4 #include <inttypes.h>
      5 
      6 void *palloc(uint_t npages);
      7 int pfree(void *paddr, uint_t npages);
      8 
      9 #endif /* __MM_H */