0001 #ifndef _ALLOC_H 0002 #define _ALLOC_H 0003 /* 0004 * alloc.h 0005 * Some common defs for allocation interfaces 0006 */ 0007 #define alloca(s) __builtin_alloca(s) 0008 0009 extern void *malloc(unsigned int), *realloc(void *, unsigned int); 0010 extern void free(void *); 0011 0012 #endif /* _ALLOC_H */