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 
6 inline void *
7 rpl_realloc(ptr, size)
8  void *ptr;
9  size_t size;
10 {
11  return realloc(ptr, size);
12 }
void *size_t size
Definition: malloc.c:8
void *void * ptr
Definition: realloc.c:8