summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-03-14 19:53:21 +0000
committerJim Meyering <jim@meyering.net>1998-03-14 19:53:21 +0000
commitf31f7e1c754d244981148e445d7a1f532186f593 (patch)
tree9a36fddc8ed935863485c8a97d55fc56b9a37e6a
parentd34d42ca0552934a18ab6df3178ba8c150c230fc (diff)
downloadcoreutils-f31f7e1c754d244981148e445d7a1f532186f593.tar.gz
*** empty log message ***
-rw-r--r--lib/getdate.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/getdate.h b/lib/getdate.h
index 0f2179e1e..674c474f1 100644
--- a/lib/getdate.h
+++ b/lib/getdate.h
@@ -14,28 +14,28 @@
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
# include <config.h>
#endif
#ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(args) args
+# define PARAMS(Args) Args
# else
-# define PARAMS(args) ()
+# define PARAMS(Args) ()
# endif
#endif
-#if defined (vms)
+#ifdef vms
# include <types.h>
# include <time.h>
#else
# include <sys/types.h>
-# ifdef TIME_WITH_SYS_TIME
+# if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
# else
-# ifdef HAVE_SYS_TIME_H
+# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>