13 lines
303 B
C
Executable file
13 lines
303 B
C
Executable file
#ifndef THREADS_MALLOC_H
|
|
#define THREADS_MALLOC_H
|
|
|
|
#include <debug.h>
|
|
#include <stddef.h>
|
|
|
|
void malloc_init (void);
|
|
void *malloc (size_t) __attribute__ ((malloc));
|
|
void *calloc (size_t, size_t) __attribute__ ((malloc));
|
|
void *realloc (void *, size_t);
|
|
void free (void *);
|
|
|
|
#endif /* threads/malloc.h */
|