From: Jim Meyering Date: Fri, 26 Jan 2001 11:15:37 +0000 (+0000) Subject: Include stddef.h. X-Git-Tag: FILEUTILS-4_0_38~19 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=c8d0d0ca6f1edf4803affa4b8733a92916e4a5ec;p=thirdparty%2Fcoreutils.git Include stddef.h. --- diff --git a/lib/quote.c b/lib/quote.c index fd1b57e924..0ce935cb20 100644 --- a/lib/quote.c +++ b/lib/quote.c @@ -4,6 +4,9 @@ # include #endif +#if HAVE_STDDEF_H +# include /* For the definition of size_t on windows w/MSVC. */ +#endif #include #include #include diff --git a/lib/quotearg.c b/lib/quotearg.c index d5fbc9e603..a668a68b57 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -1,5 +1,5 @@ /* quotearg.c - quote arguments for output - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 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 @@ -21,6 +21,9 @@ # include #endif +#if HAVE_STDDEF_H +# include /* For the definition of size_t on windows w/MSVC. */ +#endif #include #include #include