blob: 4fec2c2ff65e4e9c0384a2c871a47284d0a48f1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef ALLOC_H
#define ALLOC_H
extern /*@null@*/ /*@out@*/ char *alloc();
extern void alloc_free();
extern int alloc_re();
/* use these names in the future */
#define qfree alloc_free
#define qrealloc alloc_re
#endif
|