diff options
Diffstat (limited to 'pintos-progos/threads/malloc.h')
| -rw-r--r-- | pintos-progos/threads/malloc.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/pintos-progos/threads/malloc.h b/pintos-progos/threads/malloc.h deleted file mode 100644 index bc55d36..0000000 --- a/pintos-progos/threads/malloc.h +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | #ifndef THREADS_MALLOC_H | ||
| 2 | #define THREADS_MALLOC_H | ||
| 3 | |||
| 4 | #include <debug.h> | ||
| 5 | #include <stddef.h> | ||
| 6 | |||
| 7 | void malloc_init (void); | ||
| 8 | void *malloc (size_t) __attribute__ ((malloc)); | ||
| 9 | void *calloc (size_t, size_t) __attribute__ ((malloc)); | ||
| 10 | void *realloc (void *, size_t); | ||
| 11 | void free (void *); | ||
| 12 | |||
| 13 | #endif /* threads/malloc.h */ | ||
