summaryrefslogtreecommitdiff
path: root/include/alloc.h
blob: ecfe02a86a8981558b338342930ee5eadcf468c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ALLOC_H
#define ALLOC_H

extern void *alloc(unsigned int);
extern void alloc_free(void *);
extern int alloc_re(void *, unsigned int, unsigned int);

/* use these names in the future */
#define qfree    alloc_free
#define qrealloc alloc_re

#endif