From 8281103ea411a4ff71ab75d92fb01a8fcf789a25 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 21 Nov 2002 13:16:04 +0000 Subject: [PATCH] Use `"'s when including quotearg.h and xalloc.h, not the `<...>' notation. Include and declare errno if necessary. --- lib/quotearg.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/quotearg.c b/lib/quotearg.c index 5e7e011..f9ebc6d 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)) -- 2.7.4