1 /* reimplementation by uo, placed in the public domain */
2 #ifndef ALLOC_H
3 #define ALLOC_H
4 
5 extern /*@null@*//*@out@*/char *alloc(unsigned int len);
6 extern void alloc_free(char *s);
7 extern int alloc_re(char **s,unsigned int oldsize, unsigned int newsize);
8 
9 #endif
10