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