alloc.h (220B)
1 /* Public domain. */ 2 3 #ifndef ALLOC_H 4 #define ALLOC_H 5 6 #include <stddef.h> 7 8 extern /*@null@*//*@out@*/char *alloc( size_t n ); 9 extern void alloc_free( char* ); 10 extern int alloc_re( char** x, size_t m, size_t n); 11 12 #endif