mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-02-03 19:13:20 +08:00
8 lines
111 B
C
8 lines
111 B
C
#ifndef JOS_INC_MALLOC_H
|
|
#define JOS_INC_MALLOC_H 1
|
|
|
|
void *malloc(size_t size);
|
|
void free(void *addr);
|
|
|
|
#endif
|