From d4487f90508fa77eb6fc676a3c9a620ff17a21fa Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Thu, 18 Feb 1988 16:11:16 -0500 Subject: [PATCH] more standard work SCCS-file: tzfile.h SCCS-SID: 3.6 --- tzfile.h | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/tzfile.h b/tzfile.h index a3bca81..417359d 100644 --- a/tzfile.h +++ b/tzfile.h @@ -1,6 +1,9 @@ #ifndef lint #ifndef NOID +#ifndef TZFILE_H +#define TZFILE_H static char tzfilehid[] = "%W%"; +#endif /* !defined TZFILE_H */ #endif /* !defined NOID */ #endif /* !defined lint */ @@ -117,16 +120,3 @@ struct tzhead { */ #define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0) - -#ifdef __STDC__ -#define P(s) s -#endif /* defined __STDC__ */ - -#ifdef __TURBOC__ -#define P(s) s -#endif /* defined __TURBOC__ */ - -#ifndef P -#define P(s) () -#define const -#endif /* !defined P */