summaryrefslogtreecommitdiff
path: root/realloc.c
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2009-03-15 15:53:23 +0100
committerAndreas Gruenbacher <agruen@suse.de>2009-03-19 20:42:57 +0100
commit11374a026a0229a32d3d7d6e88aaa0f381a7a9c3 (patch)
tree5e4f824227608f2b848f0102f40a56b43953f199 /realloc.c
parent65f7c26e8ae7016b967aad7cad42ec0e4e81d3e0 (diff)
downloadpatch-rcs-history.tar.gz
Previous work in progressrcs-history
Diffstat (limited to 'realloc.c')
-rw-r--r--realloc.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/realloc.c b/realloc.c
index d0d3e4a..ccbf991 100644
--- a/realloc.c
+++ b/realloc.c
@@ -1,5 +1,5 @@
/* Work around bug on some systems where realloc (NULL, 0) fails.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -22,19 +22,14 @@
#endif
#undef realloc
-#include <sys/types.h>
-
-char *malloc ();
-char *realloc ();
+#include <stdlib.h>
/* Change the size of an allocated block of memory P to N bytes,
with error checking. If N is zero, change it to 1. If P is NULL,
use malloc. */
-char *
-rpl_realloc (p, n)
- char *p;
- size_t n;
+void *
+rpl_realloc (void *p, size_t n)
{
if (n == 0)
n = 1;