From: Jim Meyering Date: Sat, 18 Jan 1997 20:12:10 +0000 (+0000) Subject: Indent 2 more cpp-directives to reflect nesting. X-Git-Tag: TEXTUTILS-1_21a~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1db691c125928ef64eb5aca8ee1aefccee66505;p=thirdparty%2Fcoreutils.git Indent 2 more cpp-directives to reflect nesting. --- diff --git a/lib/getdate.y b/lib/getdate.y index be5e362048..a00c26e534 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -54,14 +54,14 @@ #include "getdate.h" #if defined (STDC_HEADERS) || defined (USG) -#include +# include #endif /* Some old versions of bison generate parsers that use bcopy. That loses on systems that don't provide the function, so we have to redefine it here. */ #if !defined (HAVE_BCOPY) && defined (HAVE_MEMCPY) && !defined (bcopy) -#define bcopy(from, to, len) memcpy ((to), (from), (len)) +# define bcopy(from, to, len) memcpy ((to), (from), (len)) #endif extern struct tm *gmtime ();