changeset 1267:c382cf24676b

*** empty log message ***
author Jim Meyering <jim@meyering.net>
date Sat, 14 Mar 1998 19:53:21 +0000
parents 13bce4b8e092
children a6946b537568
files lib/getdate.h
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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>