libspf2
1.2.11
Main Page
Data Structures
Files
File List
Globals
src
libreplace
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
}
size
void *size_t size
Definition:
malloc.c:8
ptr
void *void * ptr
Definition:
realloc.c:8
Generated by
1.8.5