Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 705800
Collapse All | Expand All

(-)a/lib/malloc.h (+3 lines)
Line 0 Link Here
1
#include <sys/types.h>
2
3
void * rpl_malloc (size_t n);
(-)a/lib/realloc.h (+3 lines)
Line 0 Link Here
1
#include <sys/types.h>
2
3
void * rpl_realloc (void *p, size_t n);
(-)a/src/config.h.in (+2 lines)
Lines 250-261 Link Here
250
#undef const
250
#undef const
251
251
252
/* Define to rpl_malloc if the replacement function should be used. */
252
/* Define to rpl_malloc if the replacement function should be used. */
253
#include "rpl_malloc.h"
253
#undef malloc
254
#undef malloc
254
255
255
/* Define to `int' if <sys/types.h> does not define. */
256
/* Define to `int' if <sys/types.h> does not define. */
256
#undef pid_t
257
#undef pid_t
257
258
258
/* Define to rpl_realloc if the replacement function should be used. */
259
/* Define to rpl_realloc if the replacement function should be used. */
260
#include "rpl_realloc.h"
259
#undef realloc
261
#undef realloc
260
262
261
/* Define to `unsigned int' if <sys/types.h> does not define. */
263
/* Define to `unsigned int' if <sys/types.h> does not define. */
(-)a/src/rpl_malloc.h (+1 lines)
Line 0 Link Here
1
../lib/malloc.h
(-)a/src/rpl_realloc.h (+1 lines)
Line 0 Link Here
1
../lib/realloc.h

Return to bug 705800