Main Page | Data Structures | Directories | File List | Data Fields | Globals

realloc.c

Go to the documentation of this file.
00001 #warning "Sorry, you will have to find a working realloc on your own"
00002 
00003 #include "config.h"
00004 #include <sys/types.h>
00005 
00006 inline void *
00007 rpl_realloc(ptr, size)
00008         void *ptr;
00009         size_t size;
00010 {       
00011         return realloc(ptr, size);
00012 }

Generated on Fri Jun 25 18:30:03 2010 for libspf2 by  doxygen 1.4.4