From: Jim Meyering Date: Thu, 21 Nov 2002 13:16:04 +0000 (+0000) Subject: Use `"'s when including quotearg.h and xalloc.h, not the `<...>' notation. X-Git-Tag: v4.5.4~186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8281103ea411a4ff71ab75d92fb01a8fcf789a25;p=thirdparty%2Fcoreutils.git Use `"'s when including quotearg.h and xalloc.h, not the `<...>' notation. Include and declare errno if necessary. --- diff --git a/lib/quotearg.c b/lib/quotearg.c index 5e7e011846..f9ebc6df34 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -25,10 +25,12 @@ # include /* For the definition of size_t on windows w/MSVC. */ #endif #include -#include -#include #include +#include +#ifndef errno +extern int errno; +#endif #if ENABLE_NLS # include @@ -97,6 +99,9 @@ # endif #endif +#include "quotearg.h" +#include "xalloc.h" + #define INT_BITS (sizeof (int) * CHAR_BIT) #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))