fehQlibs 26
Qlibs
Loading...
Searching...
No Matches
alloc.h
Go to the documentation of this file.
1#ifndef ALLOC_H
2#define ALLOC_H
3
4extern void *alloc(unsigned int);
5extern void alloc_free(void *);
6extern int alloc_re(void **, unsigned int, unsigned int);
7
8/* use these names in the future */
9#define qfree alloc_free
10#define qrealloc alloc_re
11
12#endif
void alloc_free(void *)
Definition: alloc.c:45
void * alloc(unsigned int)
Definition: alloc.c:27
int alloc_re(void **, unsigned int, unsigned int)
Definition: alloc.c:53