mirror of
https://github.com/westes/flex.git
synced 2026-01-26 15:39:06 +00:00
18 lines
349 B
C
Executable File
18 lines
349 B
C
Executable File
#include <config.h>
|
|
#undef malloc
|
|
|
|
#include <sys/types.h>
|
|
|
|
void *malloc (size_t n);
|
|
|
|
/* Allocate an N-byte block of memory from the heap.
|
|
If N is zero, allocate a 1-byte block. */
|
|
|
|
void *
|
|
rpl_malloc (size_t n)
|
|
{
|
|
if (n == 0)
|
|
n = 1;
|
|
return malloc (n);
|
|
}
|