1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
1997-11-03 05:19:56 +00:00
parent ab5ff1597f
commit 65673815ac

View File

@@ -28,13 +28,16 @@ char *malloc ();
char *realloc ();
/* 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;
{
if (n == 0)
n = 1;
if (p == 0)
return malloc (n);
return realloc (p, n);