blob: daac8a573d130f1ce068230c6d6707782d20682a (
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
|