summaryrefslogtreecommitdiff
path: root/lib/quotearg.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-01-26 11:15:37 +0000
committerJim Meyering <jim@meyering.net>2001-01-26 11:15:37 +0000
commitc8d0d0ca6f1edf4803affa4b8733a92916e4a5ec (patch)
tree0ea117f21078fc9dce57b2c60a310115165584ea /lib/quotearg.c
parent0e3fea79f36e19a9ffb74ec43c82b213208ca996 (diff)
downloadcoreutils-c8d0d0ca6f1edf4803affa4b8733a92916e4a5ec.tar.xz
Include stddef.h.
Diffstat (limited to 'lib/quotearg.c')
-rw-r--r--lib/quotearg.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c
index d5fbc9e60..a668a68b5 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 <config.h>
#endif
+#if HAVE_STDDEF_H
+# include <stddef.h> /* For the definition of size_t on windows w/MSVC. */
+#endif
#include <sys/types.h>
#include <quotearg.h>
#include <xalloc.h>