6 ** This file is in the public domain, so clarified as of
7 ** 1996-06-05 by Arthur David Olson.
11 ** This header is for use ONLY with the time conversion code.
12 ** There is no guarantee that it will remain unchanged,
13 ** or that it will remain at all.
14 ** Do NOT copy it to any system include directory.
24 static char privatehid
[] = "@(#)private.h 7.55";
25 #endif /* !defined NOID */
26 #endif /* !defined lint */
28 #define GRANDPARENTED "Local time zone must be set--see zic manual page"
31 ** Defaults for preprocessor symbols.
32 ** You can override these in your C compiler options, e.g. `-DHAVE_ADJTIME=0'.
36 #define HAVE_ADJTIME 1
37 #endif /* !defined HAVE_ADJTIME */
40 #define HAVE_GETTEXT 0
41 #endif /* !defined HAVE_GETTEXT */
43 #ifndef HAVE_INCOMPATIBLE_CTIME_R
44 #define HAVE_INCOMPATIBLE_CTIME_R 0
45 #endif /* !defined INCOMPATIBLE_CTIME_R */
47 #ifndef HAVE_SETTIMEOFDAY
48 #define HAVE_SETTIMEOFDAY 3
49 #endif /* !defined HAVE_SETTIMEOFDAY */
52 #define HAVE_STRERROR 1
53 #endif /* !defined HAVE_STRERROR */
56 #define HAVE_SYMLINK 1
57 #endif /* !defined HAVE_SYMLINK */
59 #ifndef HAVE_SYS_STAT_H
60 #define HAVE_SYS_STAT_H 1
61 #endif /* !defined HAVE_SYS_STAT_H */
63 #ifndef HAVE_SYS_WAIT_H
64 #define HAVE_SYS_WAIT_H 1
65 #endif /* !defined HAVE_SYS_WAIT_H */
68 #define HAVE_UNISTD_H 1
69 #endif /* !defined HAVE_UNISTD_H */
72 #define HAVE_UTMPX_H 0
73 #endif /* !defined HAVE_UTMPX_H */
76 #define LOCALE_HOME "/usr/lib/locale"
77 #endif /* !defined LOCALE_HOME */
79 #if HAVE_INCOMPATIBLE_CTIME_R
80 #define asctime_r _incompatible_asctime_r
81 #define ctime_r _incompatible_ctime_r
82 #endif /* HAVE_INCOMPATIBLE_CTIME_R */
84 void logwtmp(char *, char *, char *);
90 #include "sys/types.h" /* for time_t */
94 #include "limits.h" /* for CHAR_BIT */
100 #endif /* HAVE_GETTEXT */
103 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
104 #endif /* HAVE_SYS_WAIT_H */
107 #define WIFEXITED(status) (((status) & 0xff) == 0)
108 #endif /* !defined WIFEXITED */
110 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
111 #endif /* !defined WEXITSTATUS */
114 #include "unistd.h" /* for F_OK and R_OK */
115 #endif /* HAVE_UNISTD_H */
120 #endif /* !defined F_OK */
123 #endif /* !defined R_OK */
124 #endif /* !HAVE_UNISTD_H */
126 /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
127 #define is_digit(c) ((unsigned)(c) - '0' <= 9)
130 ** Workarounds for compilers/systems.
134 ** SunOS 4.1.1 cc lacks prototypes.
140 #else /* !__STDC__ */
142 #endif /* !__STDC__ */
143 #endif /* !defined P */
146 ** SunOS 4.1.1 headers lack EXIT_SUCCESS.
150 #define EXIT_SUCCESS 0
151 #endif /* !defined EXIT_SUCCESS */
154 ** SunOS 4.1.1 headers lack EXIT_FAILURE.
158 #define EXIT_FAILURE 1
159 #endif /* !defined EXIT_FAILURE */
162 ** SunOS 4.1.1 headers lack FILENAME_MAX.
169 #include "sys/param.h"
170 #endif /* defined unix */
171 #endif /* !defined MAXPATHLEN */
174 #define FILENAME_MAX MAXPATHLEN
175 #endif /* defined MAXPATHLEN */
177 #define FILENAME_MAX 1024 /* Pure guesswork */
178 #endif /* !defined MAXPATHLEN */
180 #endif /* !defined FILENAME_MAX */
183 ** SunOS 4.1.1 libraries lack remove.
187 extern int unlink
P((const char * filename
));
188 #define remove unlink
189 #endif /* !defined remove */
192 ** Some ancient errno.h implementations don't declare errno.
193 ** But some newer errno.h implementations define it as a macro.
194 ** Fix the former without affecting the latter.
199 #endif /* !defined errno */
202 ** Some time.h implementations don't declare asctime_r.
203 ** Others might define it as a macro.
204 ** Fix the former without affecting the latter.
208 extern char * asctime_r(register const struct tm
*, char *);
212 ** Private function declarations.
215 char * icalloc
P((int nelem
, int elsize
));
216 char * icatalloc
P((char * old
, const char * new));
217 char * icpyalloc
P((const char * string
));
218 char * imalloc
P((int n
));
219 void * irealloc
P((void * pointer
, int size
));
220 void icfree
P((char * pointer
));
221 void ifree
P((char * pointer
));
222 const char *scheck
P((const char *string
, const char *format
));
225 ** Finally, some convenience items.
230 #endif /* !defined TRUE */
234 #endif /* !defined FALSE */
237 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
238 #endif /* !defined TYPE_BIT */
241 #define TYPE_SIGNED(type) (((type) -1) < 0)
242 #endif /* !defined TYPE_SIGNED */
245 ** Since the definition of TYPE_INTEGRAL contains floating point numbers,
246 ** it cannot be used in preprocessor directives.
249 #ifndef TYPE_INTEGRAL
250 #define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5)
251 #endif /* !defined TYPE_INTEGRAL */
253 #ifndef INT_STRLEN_MAXIMUM
255 ** 302 / 1000 is log10(2.0) rounded up.
256 ** Subtract one for the sign bit if the type is signed;
257 ** add one for integer division truncation;
258 ** add one more for a minus sign if the type is signed.
260 #define INT_STRLEN_MAXIMUM(type) \
261 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \
262 1 + TYPE_SIGNED(type))
263 #endif /* !defined INT_STRLEN_MAXIMUM */
272 #endif /* defined lint */
276 #endif /* defined __GNUC__ */
277 #endif /* !defined lint */
278 #endif /* !defined GNUC_or_lint */
282 #define INITIALIZE(x) ((x) = 0)
283 #endif /* defined GNUC_or_lint */
285 #define INITIALIZE(x)
286 #endif /* !defined GNUC_or_lint */
287 #endif /* !defined INITIALIZE */
290 ** For the benefit of GNU folk...
291 ** `_(MSGID)' uses the current locale's message library string for MSGID.
292 ** The default is to use gettext if available, and use MSGID otherwise.
297 #define _(msgid) gettext(msgid)
298 #else /* !HAVE_GETTEXT */
299 #define _(msgid) msgid
300 #endif /* !HAVE_GETTEXT */
301 #endif /* !defined _ */
304 #define TZ_DOMAIN "tz"
305 #endif /* !defined TZ_DOMAIN */
307 #if HAVE_INCOMPATIBLE_CTIME_R
310 char *asctime_r
P((struct tm
const *, char *));
311 char *ctime_r
P((time_t const *, char *));
312 #endif /* HAVE_INCOMPATIBLE_CTIME_R */
315 ** UNIX was a registered trademark of The Open Group in 2003.
318 #endif /* !defined PRIVATE_H */