diff options
Diffstat (limited to 'lib/libc/db/PORT/clib/realloc.c')
| -rw-r--r-- | lib/libc/db/PORT/clib/realloc.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/libc/db/PORT/clib/realloc.c b/lib/libc/db/PORT/clib/realloc.c deleted file mode 100644 index 11e5cd28c5da..000000000000 --- a/lib/libc/db/PORT/clib/realloc.c +++ /dev/null @@ -1,11 +0,0 @@ -#include <sys/types.h> - -#include <stdlib.h> - -void * -__fix_realloc(p, n) - void *p; - size_t n; -{ - return (p == 0 ? malloc(n) : realloc(p, n)); -} |
