X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Frealloc.c;h=ccbf991388e5010bb8399d016cdb57e5ac34ed2c;hb=f792a03ccf327e0e80b60e6b7a013e7f89f9f5ca;hp=1f82e75aa9baa3ce7c4330c8d98c39234fcec53c;hpb=66d38967ea1995b22c06fbe3645b685b081355ce;p=gnulib.git diff --git a/lib/realloc.c b/lib/realloc.c index 1f82e75aa..ccbf99138 100644 --- a/lib/realloc.c +++ b/lib/realloc.c @@ -1,5 +1,5 @@ -/* Work around bug on some systems where realloc (NULL, n) fails. - Copyright (C) 1997 Free Software Foundation, Inc. +/* Work around bug on some systems where realloc (NULL, 0) fails. + 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,17 @@ #endif #undef realloc -#include - -char *malloc (); -char *realloc (); +#include /* Change the size of an allocated block of memory P to N bytes, - with error checking. If P is NULL, use malloc. */ + 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; if (p == 0) return malloc (n); return realloc (p, n);