From: Jim Meyering Date: Sat, 18 Jan 1997 20:12:10 +0000 (+0000) Subject: Indent 2 more cpp-directives to reflect nesting. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=094267960be1f671c1ec5dd787fadedf57362a24;p=pspp 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 ();