Indent 2 more cpp-directives to reflect nesting.
authorJim Meyering <jim@meyering.net>
Sat, 18 Jan 1997 20:12:10 +0000 (20:12 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 18 Jan 1997 20:12:10 +0000 (20:12 +0000)
lib/getdate.y

index be5e362..a00c26e 100644 (file)
 #include "getdate.h"
 
 #if defined (STDC_HEADERS) || defined (USG)
-#include <string.h>
+# include <string.h>
 #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 ();