From: Jim Meyering Date: Fri, 6 Jun 2003 21:00:16 +0000 (+0000) Subject: Include rather than , as we merely need size_t. X-Git-Tag: v5.0.1~341 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8408a9a92a0f8e7737cf8d22c0e85b590ace5922;p=thirdparty%2Fcoreutils.git Include rather than , as we merely need size_t. --- diff --git a/lib/realloc.c b/lib/realloc.c index d0d3e4ab07..5737121085 100644 --- a/lib/realloc.c +++ b/lib/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,7 +22,7 @@ #endif #undef realloc -#include +#include char *malloc (); char *realloc ();