initial commit
[pfinal.git] / Routix / include / lib / alloc.h
blob300c7205779d561170afc9026f1b99ab9fe6ebc7
2 #define PAGINA_SIZE 4096
4 void *malloc_page(void);
6 void *malloc(unsigned nbytes);
7 void free (void *ap);
9 typedef long Align;
11 typedef union header {
12 struct {
13 union header *ptr;
14 unsigned size;
15 } s;
16 Align x;
17 } Header;
19 Header *morecore(void);