1 #ifndef PRIVATE_H 2 3 #define PRIVATE_H 4 5 /* 6 ** This file is in the public domain, so clarified as of 7 ** 1996-06-05 by Arthur David Olson. 8 ** 9 ** $FreeBSD$ 10 */ 11 12 /* Stuff moved from Makefile.inc to reduce clutter */ 13 #ifndef TM_GMTOFF 14 #define TM_GMTOFF tm_gmtoff 15 #define TM_ZONE tm_zone 16 #define STD_INSPIRED 1 17 #define PCTS 1 18 #define HAVE_LONG_DOUBLE 1 19 #define HAVE_STRERROR 1 20 #define HAVE_UNISTD_H 1 21 #define LOCALE_HOME _PATH_LOCALE 22 #define TZDIR "/usr/share/zoneinfo" 23 #endif /* ndef TM_GMTOFF */ 24 25 /* 26 ** This header is for use ONLY with the time conversion code. 27 ** There is no guarantee that it will remain unchanged, 28 ** or that it will remain at all. 29 ** Do NOT copy it to any system include directory. 30 ** Thank you! 31 */ 32 33 /* 34 ** ID 35 */ 36 37 #ifndef lint 38 #ifndef NOID 39 /* 40 static char privatehid[] = "@(#)private.h 8.6"; 41 */ 42 #endif /* !defined NOID */ 43 #endif /* !defined lint */ 44 45 #define GRANDPARENTED "Local time zone must be set--see zic manual page" 46 47 /* 48 ** Defaults for preprocessor symbols. 49 ** You can override these in your C compiler options, e.g. `-DHAVE_ADJTIME=0'. 50 */ 51 52 #ifndef HAVE_ADJTIME 53 #define HAVE_ADJTIME 1 54 #endif /* !defined HAVE_ADJTIME */ 55 56 #ifndef HAVE_GETTEXT 57 #define HAVE_GETTEXT 0 58 #endif /* !defined HAVE_GETTEXT */ 59 60 #ifndef HAVE_INCOMPATIBLE_CTIME_R 61 #define HAVE_INCOMPATIBLE_CTIME_R 0 62 #endif /* !defined INCOMPATIBLE_CTIME_R */ 63 64 #ifndef HAVE_SETTIMEOFDAY 65 #define HAVE_SETTIMEOFDAY 3 66 #endif /* !defined HAVE_SETTIMEOFDAY */ 67 68 #ifndef HAVE_SYMLINK 69 #define HAVE_SYMLINK 1 70 #endif /* !defined HAVE_SYMLINK */ 71 72 #ifndef HAVE_SYS_STAT_H 73 #define HAVE_SYS_STAT_H 1 74 #endif /* !defined HAVE_SYS_STAT_H */ 75 76 #ifndef HAVE_SYS_WAIT_H 77 #define HAVE_SYS_WAIT_H 1 78 #endif /* !defined HAVE_SYS_WAIT_H */ 79 80 #ifndef HAVE_UNISTD_H 81 #define HAVE_UNISTD_H 1 82 #endif /* !defined HAVE_UNISTD_H */ 83 84 #ifndef HAVE_UTMPX_H 85 #define HAVE_UTMPX_H 0 86 #endif /* !defined HAVE_UTMPX_H */ 87 88 #ifndef LOCALE_HOME 89 #define LOCALE_HOME "/usr/lib/locale" 90 #endif /* !defined LOCALE_HOME */ 91 92 #if HAVE_INCOMPATIBLE_CTIME_R 93 #define asctime_r _incompatible_asctime_r 94 #define ctime_r _incompatible_ctime_r 95 #endif /* HAVE_INCOMPATIBLE_CTIME_R */ 96 97 /* 98 ** Nested includes 99 */ 100 101 #include "sys/types.h" /* for time_t */ 102 #include "stdio.h" 103 #include "errno.h" 104 #include "string.h" 105 #include "limits.h" /* for CHAR_BIT et al. */ 106 #include "time.h" 107 #include "stdlib.h" 108 109 #if HAVE_GETTEXT 110 #include "libintl.h" 111 #endif /* HAVE_GETTEXT */ 112 113 #if HAVE_SYS_WAIT_H 114 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */ 115 #endif /* HAVE_SYS_WAIT_H */ 116 117 #ifndef WIFEXITED 118 #define WIFEXITED(status) (((status) & 0xff) == 0) 119 #endif /* !defined WIFEXITED */ 120 #ifndef WEXITSTATUS 121 #define WEXITSTATUS(status) (((status) >> 8) & 0xff) 122 #endif /* !defined WEXITSTATUS */ 123 124 #if HAVE_UNISTD_H 125 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */ 126 #endif /* HAVE_UNISTD_H */ 127 128 #if !(HAVE_UNISTD_H) 129 #ifndef F_OK 130 #define F_OK 0 131 #endif /* !defined F_OK */ 132 #ifndef R_OK 133 #define R_OK 4 134 #endif /* !defined R_OK */ 135 #endif /* !(HAVE_UNISTD_H) */ 136 137 /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */ 138 #define is_digit(c) ((unsigned)(c) - '0' <= 9) 139 140 /* 141 ** Define HAVE_STDINT_H's default value here, rather than at the 142 ** start, since __GLIBC__'s value depends on previously-included 143 ** files. 144 ** (glibc 2.1 and later have stdint.h, even with pre-C99 compilers.) 145 */ 146 #ifndef HAVE_STDINT_H 147 #define HAVE_STDINT_H \ 148 (199901 <= __STDC_VERSION__ || \ 149 2 < (__GLIBC__ + (0 < __GLIBC_MINOR__))) 150 #endif /* !defined HAVE_STDINT_H */ 151 152 #if HAVE_STDINT_H 153 #include "stdint.h" 154 #endif /* !HAVE_STDINT_H */ 155 156 #ifndef INT_FAST64_MAX 157 /* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */ 158 #if defined LLONG_MAX || defined __LONG_LONG_MAX__ 159 typedef long long int_fast64_t; 160 #else /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */ 161 #if (LONG_MAX >> 31) < 0xffffffff 162 Please use a compiler that supports a 64-bit integer type (or wider); 163 you may need to compile with "-DHAVE_STDINT_H". 164 #endif /* (LONG_MAX >> 31) < 0xffffffff */ 165 typedef long int_fast64_t; 166 #endif /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */ 167 #endif /* !defined INT_FAST64_MAX */ 168 169 #ifndef INT32_MAX 170 #define INT32_MAX 0x7fffffff 171 #endif /* !defined INT32_MAX */ 172 #ifndef INT32_MIN 173 #define INT32_MIN (-1 - INT32_MAX) 174 #endif /* !defined INT32_MIN */ 175 176 #if 2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__) 177 # define ATTRIBUTE_PURE __attribute__ ((__pure__)) 178 #else 179 # define ATTRIBUTE_PURE /* empty */ 180 #endif 181 182 /* 183 ** Workarounds for compilers/systems. 184 */ 185 186 /* 187 ** Some time.h implementations don't declare asctime_r. 188 ** Others might define it as a macro. 189 ** Fix the former without affecting the latter. 190 */ 191 192 #ifndef asctime_r 193 extern char * asctime_r(struct tm const *, char *); 194 #endif 195 196 /* 197 ** Private function declarations. 198 */ 199 200 char * icatalloc(char * old, const char * new); 201 char * icpyalloc(const char * string); 202 const char * scheck(const char * string, const char * format); 203 204 /* 205 ** Finally, some convenience items. 206 */ 207 208 #ifndef TRUE 209 #define TRUE 1 210 #endif /* !defined TRUE */ 211 212 #ifndef FALSE 213 #define FALSE 0 214 #endif /* !defined FALSE */ 215 216 #ifndef TYPE_BIT 217 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT) 218 #endif /* !defined TYPE_BIT */ 219 220 #ifndef TYPE_SIGNED 221 #define TYPE_SIGNED(type) (((type) -1) < 0) 222 #endif /* !defined TYPE_SIGNED */ 223 224 /* 225 ** Since the definition of TYPE_INTEGRAL contains floating point numbers, 226 ** it cannot be used in preprocessor directives. 227 */ 228 229 #ifndef TYPE_INTEGRAL 230 #define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5) 231 #endif /* !defined TYPE_INTEGRAL */ 232 233 /* 234 ** Since the definition of TYPE_INTEGRAL contains floating point numbers, 235 ** it cannot be used in preprocessor directives. 236 */ 237 238 #ifndef TYPE_INTEGRAL 239 #define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5) 240 #endif /* !defined TYPE_INTEGRAL */ 241 242 #ifndef INT_STRLEN_MAXIMUM 243 /* 244 ** 302 / 1000 is log10(2.0) rounded up. 245 ** Subtract one for the sign bit if the type is signed; 246 ** add one for integer division truncation; 247 ** add one more for a minus sign if the type is signed. 248 */ 249 #define INT_STRLEN_MAXIMUM(type) \ 250 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \ 251 1 + TYPE_SIGNED(type)) 252 #endif /* !defined INT_STRLEN_MAXIMUM */ 253 254 /* 255 ** INITIALIZE(x) 256 */ 257 258 #ifndef GNUC_or_lint 259 #ifdef lint 260 #define GNUC_or_lint 261 #endif /* defined lint */ 262 #ifndef lint 263 #ifdef __GNUC__ 264 #define GNUC_or_lint 265 #endif /* defined __GNUC__ */ 266 #endif /* !defined lint */ 267 #endif /* !defined GNUC_or_lint */ 268 269 #ifndef INITIALIZE 270 #ifdef GNUC_or_lint 271 #define INITIALIZE(x) ((x) = 0) 272 #endif /* defined GNUC_or_lint */ 273 #ifndef GNUC_or_lint 274 #define INITIALIZE(x) 275 #endif /* !defined GNUC_or_lint */ 276 #endif /* !defined INITIALIZE */ 277 278 /* 279 ** For the benefit of GNU folk... 280 ** `_(MSGID)' uses the current locale's message library string for MSGID. 281 ** The default is to use gettext if available, and use MSGID otherwise. 282 */ 283 284 #ifndef _ 285 #if HAVE_GETTEXT 286 #define _(msgid) gettext(msgid) 287 #else /* !HAVE_GETTEXT */ 288 #define _(msgid) msgid 289 #endif /* !HAVE_GETTEXT */ 290 #endif /* !defined _ */ 291 292 #ifndef TZ_DOMAIN 293 #define TZ_DOMAIN "tz" 294 #endif /* !defined TZ_DOMAIN */ 295 296 #if HAVE_INCOMPATIBLE_CTIME_R 297 #undef asctime_r 298 #undef ctime_r 299 char *asctime_r(struct tm const *, char *); 300 char *ctime_r(time_t const *, char *); 301 #endif /* HAVE_INCOMPATIBLE_CTIME_R */ 302 303 #ifndef YEARSPERREPEAT 304 #define YEARSPERREPEAT 400 /* years before a Gregorian repeat */ 305 #endif /* !defined YEARSPERREPEAT */ 306 307 /* 308 ** The Gregorian year averages 365.2425 days, which is 31556952 seconds. 309 */ 310 311 #ifndef AVGSECSPERYEAR 312 #define AVGSECSPERYEAR 31556952L 313 #endif /* !defined AVGSECSPERYEAR */ 314 315 #ifndef SECSPERREPEAT 316 #define SECSPERREPEAT ((int_fast64_t) YEARSPERREPEAT * (int_fast64_t) AVGSECSPERYEAR) 317 #endif /* !defined SECSPERREPEAT */ 318 319 #ifndef SECSPERREPEAT_BITS 320 #define SECSPERREPEAT_BITS 34 /* ceil(log2(SECSPERREPEAT)) */ 321 #endif /* !defined SECSPERREPEAT_BITS */ 322 323 /* 324 ** UNIX was a registered trademark of The Open Group in 2003. 325 */ 326 327 #endif /* !defined PRIVATE_H */ 328