Armadillo  0.1.1
TheexpandableOS
memory.h
Go to the documentation of this file.
1 
6 #ifndef __MEMORY_H__
7 #define __MEMORY_H__
8 
9 #include <stddef.h>
10 #include <common/stdint.h>
11 #include <common/stdlib.h>
12 
17 void mem_init();
24 void *malloc(size_t size);
34 void free(void *ptr);
35 
36 int get_align_size();
37 #endif
void * malloc(size_t size)
Definition: memory.c:77
void free(void *ptr)
Definition: memory.c:110
void mem_init()
Definition: memory.c:71
Typedefs for fixed width integer types.
Standard library.