1 /* Public domain. */
2 
3 #ifndef ALLOC_H
4 #define ALLOC_H
5 
6 extern /*@null@*//*@out@*/char *alloc();
7 extern void alloc_free();
8 extern int alloc_re();
9 
10 #endif
11