6 ** This file is in the public domain, so clarified as of
7 ** 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
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.47";
25 #endif /* !defined NOID */
26 #endif /* !defined lint */
29 ** Defaults for preprocessor symbols.
30 ** You can override these in your C compiler options, e.g. `-DHAVE_ADJTIME=0'.
34 #define HAVE_ADJTIME 1
35 #endif /* !defined HAVE_ADJTIME */
38 #define HAVE_GETTEXT 0
39 #endif /* !defined HAVE_GETTEXT */
41 #ifndef HAVE_SETTIMEOFDAY
42 #define HAVE_SETTIMEOFDAY 3
43 #endif /* !defined HAVE_SETTIMEOFDAY */
46 #define HAVE_STRERROR 0
47 #endif /* !defined HAVE_STRERROR */
50 #define HAVE_SYMLINK 1
51 #endif /* !defined HAVE_SYMLINK */
54 #define HAVE_UNISTD_H 1
55 #endif /* !defined HAVE_UNISTD_H */
58 #define HAVE_UTMPX_H 0
59 #endif /* !defined HAVE_UTMPX_H */
62 #define LOCALE_HOME "/usr/lib/locale"
63 #endif /* !defined LOCALE_HOME */
69 #include "sys/types.h" /* for time_t */
73 #include "limits.h" /* for CHAR_BIT */
79 #endif /* HAVE_GETTEXT - 0 */
82 #include "unistd.h" /* for F_OK and R_OK */
83 #endif /* HAVE_UNISTD_H - 0 */
85 #if !(HAVE_UNISTD_H - 0)
88 #endif /* !defined F_OK */
91 #endif /* !defined R_OK */
92 #endif /* !(HAVE_UNISTD_H - 0) */
94 /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
95 #define is_digit(c) ((unsigned)(c) - '0' <= 9)
98 ** Workarounds for compilers/systems.
102 ** SunOS 4.1.1 cc lacks const.
108 #endif /* !defined __STDC__ */
109 #endif /* !defined const */
112 ** SunOS 4.1.1 cc lacks prototypes.
118 #endif /* defined __STDC__ */
121 #endif /* !defined __STDC__ */
122 #endif /* !defined P */
125 ** SunOS 4.1.1 headers lack EXIT_SUCCESS.
129 #define EXIT_SUCCESS 0
130 #endif /* !defined EXIT_SUCCESS */
133 ** SunOS 4.1.1 headers lack EXIT_FAILURE.
137 #define EXIT_FAILURE 1
138 #endif /* !defined EXIT_FAILURE */
141 ** SunOS 4.1.1 headers lack FILENAME_MAX.
148 #include "sys/param.h"
149 #endif /* defined unix */
150 #endif /* !defined MAXPATHLEN */
153 #define FILENAME_MAX MAXPATHLEN
154 #endif /* defined MAXPATHLEN */
156 #define FILENAME_MAX 1024 /* Pure guesswork */
157 #endif /* !defined MAXPATHLEN */
159 #endif /* !defined FILENAME_MAX */
162 ** SunOS 4.1.1 libraries lack remove.
166 extern int unlink
P((const char * filename
));
167 #define remove unlink
168 #endif /* !defined remove */
171 ** Some ancient errno.h implementations don't declare errno.
172 ** But some newer errno.h implementations define it as a macro.
173 ** Fix the former without affecting the latter.
177 #endif /* !defined errno */
180 ** Private function declarations.
182 char * icalloc
P((int nelem
, int elsize
));
183 char * icatalloc
P((char * old
, const char * new));
184 char * icpyalloc
P((const char * string
));
185 char * imalloc
P((int n
));
186 void * irealloc
P((void * pointer
, int size
));
187 void icfree
P((char * pointer
));
188 void ifree
P((char * pointer
));
189 char * scheck
P((const char *string
, const char *format
));
193 ** Finally, some convenience items.
198 #endif /* !defined TRUE */
202 #endif /* !defined FALSE */
205 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
206 #endif /* !defined TYPE_BIT */
209 #define TYPE_SIGNED(type) (((type) -1) < 0)
210 #endif /* !defined TYPE_SIGNED */
212 #ifndef INT_STRLEN_MAXIMUM
214 ** 302 / 1000 is log10(2.0) rounded up.
215 ** Subtract one for the sign bit if the type is signed;
216 ** add one for integer division truncation;
217 ** add one more for a minus sign if the type is signed.
219 #define INT_STRLEN_MAXIMUM(type) \
220 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 100 + 1 + TYPE_SIGNED(type))
221 #endif /* !defined INT_STRLEN_MAXIMUM */
230 #endif /* defined lint */
234 #endif /* defined __GNUC__ */
235 #endif /* !defined lint */
236 #endif /* !defined GNUC_or_lint */
240 #define INITIALIZE(x) ((x) = 0)
241 #endif /* defined GNUC_or_lint */
243 #define INITIALIZE(x)
244 #endif /* !defined GNUC_or_lint */
245 #endif /* !defined INITIALIZE */
248 ** For the benefit of GNU folk...
249 ** `_(MSGID)' uses the current locale's message library string for MSGID.
250 ** The default is to use gettext if available, and use MSGID otherwise.
255 #define _(msgid) gettext(msgid)
256 #else /* !(HAVE_GETTEXT - 0) */
257 #define _(msgid) msgid
258 #endif /* !(HAVE_GETTEXT - 0) */
259 #endif /* !defined _ */
262 #define TZ_DOMAIN "tz"
263 #endif /* !defined TZ_DOMAIN */
266 ** UNIX was a registered trademark of UNIX System Laboratories in 1993.
269 #endif /* !defined PRIVATE_H */