#ifndef _H_ALLOCATE_ #define _H_ALLOCATE_ #ifdef NO_DEALLOC # undef free # define free(x) #endif extern char *new_string _ANSI_PROTO_((char*)); extern void *allocate _ANSI_PROTO_((size_t size)); extern void deallocate _ANSI_PROTO_((void *ptr)); #endif /* _H_ALLOCATE_ */