initial commit
[mit-jos.git] / inc / malloc.h
blobbef7267e74afa6933d36f6a74ee12d140180adff
1 #ifndef JOS_INC_MALLOC_H
2 #define JOS_INC_MALLOC_H 1
4 void *malloc(size_t size);
5 void free(void *addr);
7 #endif