libspf2 1.2.11
realloc.c
Go to the documentation of this file.
1#warning "Sorry, you will have to find a working realloc on your own"
2
3#include "config.h"
4#include <sys/types.h>
5
6inline void *
7rpl_realloc(ptr, size)
8 void *ptr;
9 size_t size;
10{
11 return realloc(ptr, size);
12}
void * rpl_realloc(void *ptr, size_t size)
Definition realloc.c:7