aboutsummaryrefslogtreecommitdiffstats
path: root/memory.h
blob: 546aa2d2a32a9f71fb09a0fcfdf614a94e73d792 (plain)
1
2
3
4
5
6
7
8
#ifndef MEMORY_H_
#define MEMORY_H_

void *malloc(unsigned int);
void *calloc(unsigned int, unsigned int);
void free(void *);

#endif // MEMORY_H_