libspf2 1.2.11
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
6inline void *
8 size_t size;
9{
10 return malloc(size);
11}
void * rpl_malloc(size_t size)
Definition malloc.c:7