changeset 856:3cea2ffcbce4

Indent 2 more cpp-directives to reflect nesting.
author Jim Meyering <jim@meyering.net>
date Sat, 18 Jan 1997 20:12:10 +0000
parents 9c89b90524b8
children 35c6ee15b830
files lib/getdate.y
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/getdate.y
+++ b/lib/getdate.y
@@ -54,14 +54,14 @@
 #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 ();