Add time_r module. Change timegm, mktime, and strftime to use localtime_r
[gnulib.git] / lib / mktime.c
1 /* Convert a `struct tm' to a time_t value.
2    Copyright (C) 1993-1999, 2002, 2003 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Paul Eggert (eggert@twinsun.com).
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License along
17    with this program; if not, write to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* Define this to have a standalone program to test this implementation of
21    mktime.  */
22 /* #define DEBUG 1 */
23
24 #ifdef HAVE_CONFIG_H
25 # include <config.h>
26 #endif
27
28 #ifdef _LIBC
29 # define STDC_HEADERS 1
30 #endif
31
32 /* Assume that leap seconds are possible, unless told otherwise.
33    If the host has a `zic' command with a `-L leapsecondfilename' option,
34    then it supports leap seconds; otherwise it probably doesn't.  */
35 #ifndef LEAP_SECONDS_POSSIBLE
36 # define LEAP_SECONDS_POSSIBLE 1
37 #endif
38
39 #include <sys/types.h>          /* Some systems define `time_t' here.  */
40 #include <time.h>
41
42 #include <limits.h>
43
44 #if DEBUG
45 # include <stdio.h>
46 # if STDC_HEADERS
47 #  include <stdlib.h>
48 #  include <string.h>
49 # endif
50 /* Make it work even if the system's libc has its own mktime routine.  */
51 # define mktime my_mktime
52 #endif /* DEBUG */
53
54 /* The extra casts work around common compiler bugs.  */
55 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
56 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
57    It is necessary at least when t == time_t.  */
58 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
59                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
60 #define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t)))
61
62 #ifndef TIME_T_MIN
63 # define TIME_T_MIN TYPE_MINIMUM (time_t)
64 #endif
65 #ifndef TIME_T_MAX
66 # define TIME_T_MAX TYPE_MAXIMUM (time_t)
67 #endif
68 #define TIME_T_MIDPOINT (((TIME_T_MIN + TIME_T_MAX) >> 1) + 1)
69
70 /* Verify a requirement at compile-time (unlike assert, which is runtime).  */
71 #define verify(name, assertion) struct name { char a[(assertion) ? 1 : -1]; }
72
73 verify (time_t_is_integer, (time_t) 0.5 == 0);
74 verify (twos_complement_arithmetic, -1 == ~1 + 1);
75 verify (right_shift_propagates_sign, -1 >> 1 == -1);
76 /* The code also assumes that signed integer overflow silently wraps
77    around, but this assumption can't be stated without causing a
78    diagnostic on some hosts.  */
79
80 #define EPOCH_YEAR 1970
81 #define TM_YEAR_BASE 1900
82 verify (base_year_is_a_multiple_of_100, TM_YEAR_BASE % 100 == 0);
83
84 /* Return 1 if YEAR + TM_YEAR_BASE is a leap year.  */
85 static inline int
86 leapyear (int year)
87 {
88   /* Don't add YEAR to TM_YEAR_BASE, as that might overflow.
89      Also, work even if YEAR is negative.  */
90   return
91     ((year & 3) == 0
92      && (year % 100 != 0
93          || ((year / 100) & 3) == (- (TM_YEAR_BASE / 100) & 3)));
94 }
95
96 /* How many days come before each month (0-12).  */
97 #ifndef _LIBC
98 static
99 #endif
100 const unsigned short int __mon_yday[2][13] =
101   {
102     /* Normal years.  */
103     { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
104     /* Leap years.  */
105     { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
106   };
107
108
109 #ifndef _LIBC
110 /* Portable standalone applications should supply a "time_r.h" that
111    declares a POSIX-compliant localtime_r, for the benefit of older
112    implementations that lack localtime_r or have a nonstandard one.
113    See the gnulib time_r module for one way to implement this.  */
114 # include "time_r.h"
115 # undef __localtime_r
116 # define __localtime_r localtime_r
117 #endif
118
119 /* Return an integer value measuring (YEAR1-YDAY1 HOUR1:MIN1:SEC1) -
120    (YEAR0-YDAY0 HOUR0:MIN0:SEC0) in seconds, assuming that the clocks
121    were not adjusted between the time stamps.
122
123    The YEAR values uses the same numbering as TP->tm_year.  Values
124    need not be in the usual range.  However, YEAR1 must not be less
125    than 2 * INT_MIN or greater than 2 * INT_MAX.
126
127    The result may overflow.  It is the caller's responsibility to
128    detect overflow.  */
129
130 static inline time_t
131 ydhms_diff (long int year1, long int yday1, int hour1, int min1, int sec1,
132             int year0, int yday0, int hour0, int min0, int sec0)
133 {
134   verify (C99_integer_division, -1 / 2 == 0);
135   verify (long_int_year_and_yday_are_wide_enough,
136           INT_MAX <= LONG_MAX / 2 || TIME_T_MAX <= UINT_MAX);
137
138   /* Compute intervening leap days correctly even if year is negative.
139      Take care to avoid integer overflow here.  */
140   int a4 = (year1 >> 2) + (TM_YEAR_BASE >> 2) - ! (year1 & 3);
141   int b4 = (year0 >> 2) + (TM_YEAR_BASE >> 2) - ! (year0 & 3);
142   int a100 = a4 / 25 - (a4 % 25 < 0);
143   int b100 = b4 / 25 - (b4 % 25 < 0);
144   int a400 = a100 >> 2;
145   int b400 = b100 >> 2;
146   int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
147
148   /* Compute the desired time in time_t precision.  Overflow might
149      occur here.  */
150   time_t tyear1 = year1;
151   time_t years = tyear1 - year0;
152   time_t days = 365 * years + yday1 - yday0 + intervening_leap_days;
153   time_t hours = 24 * days + hour1 - hour0;
154   time_t minutes = 60 * hours + min1 - min0;
155   time_t seconds = 60 * minutes + sec1 - sec0;
156   return seconds;
157 }
158
159
160 /* Return a time_t value corresponding to (YEAR-YDAY HOUR:MIN:SEC),
161    assuming that *T corresponds to *TP and that no clock adjustments
162    occurred between *TP and the desired time.
163    If TP is null, return a value not equal to *T; this avoids false matches.
164    If overflow occurs, yield the minimal or maximal value, except do not
165    yield a value equal to *T.  */
166 static time_t
167 guess_time_tm (long int year, long int yday, int hour, int min, int sec,
168                const time_t *t, const struct tm *tp)
169 {
170   if (tp)
171     {
172       time_t d = ydhms_diff (year, yday, hour, min, sec,
173                              tp->tm_year, tp->tm_yday,
174                              tp->tm_hour, tp->tm_min, tp->tm_sec);
175       time_t t1 = *t + d;
176       if ((t1 < *t) == (TYPE_SIGNED (time_t) ? d < 0 : TIME_T_MAX / 2 < d))
177         return t1;
178     }
179
180   /* Overflow occurred one way or another.  Return the nearest result
181      that is actually in range, except don't report a zero difference
182      if the actual difference is nonzero, as that would cause a false
183      match.  */
184   return (*t < TIME_T_MIDPOINT
185           ? TIME_T_MIN + (*t == TIME_T_MIN)
186           : TIME_T_MAX - (*t == TIME_T_MAX));
187 }
188
189 /* Use CONVERT to convert *T to a broken down time in *TP.
190    If *T is out of range for conversion, adjust it so that
191    it is the nearest in-range value and then convert that.  */
192 static struct tm *
193 ranged_convert (struct tm *(*convert) (const time_t *, struct tm *),
194                 time_t *t, struct tm *tp)
195 {
196   struct tm *r;
197
198   if (! (r = (*convert) (t, tp)) && *t)
199     {
200       time_t bad = *t;
201       time_t ok = 0;
202       struct tm tm;
203
204       /* BAD is a known unconvertible time_t, and OK is a known good one.
205          Use binary search to narrow the range between BAD and OK until
206          they differ by 1.  */
207       while (bad != ok + (bad < 0 ? -1 : 1))
208         {
209           time_t mid = *t = (bad < 0
210                              ? bad + ((ok - bad) >> 1)
211                              : ok + ((bad - ok) >> 1));
212           if ((r = (*convert) (t, tp)))
213             {
214               tm = *r;
215               ok = mid;
216             }
217           else
218             bad = mid;
219         }
220
221       if (!r && ok)
222         {
223           /* The last conversion attempt failed;
224              revert to the most recent successful attempt.  */
225           *t = ok;
226           *tp = tm;
227           r = tp;
228         }
229     }
230
231   return r;
232 }
233
234
235 /* Convert *TP to a time_t value, inverting
236    the monotonic and mostly-unit-linear conversion function CONVERT.
237    Use *OFFSET to keep track of a guess at the offset of the result,
238    compared to what the result would be for UTC without leap seconds.
239    If *OFFSET's guess is correct, only one CONVERT call is needed.  */
240 time_t
241 __mktime_internal (struct tm *tp,
242                    struct tm *(*convert) (const time_t *, struct tm *),
243                    time_t *offset)
244 {
245   time_t t, gt, t0, t1, t2;
246   struct tm tm;
247
248   /* The maximum number of probes (calls to CONVERT) should be enough
249      to handle any combinations of time zone rule changes, solar time,
250      leap seconds, and oscillations around a spring-forward gap.
251      POSIX.1 prohibits leap seconds, but some hosts have them anyway.  */
252   int remaining_probes = 6;
253
254   /* Time requested.  Copy it in case CONVERT modifies *TP; this can
255      occur if TP is localtime's returned value and CONVERT is localtime.  */
256   int sec = tp->tm_sec;
257   int min = tp->tm_min;
258   int hour = tp->tm_hour;
259   int mday = tp->tm_mday;
260   int mon = tp->tm_mon;
261   int year_requested = tp->tm_year;
262   int isdst = tp->tm_isdst;
263
264   /* 1 if the previous probe was DST.  */
265   int dst2;
266
267   /* Ensure that mon is in range, and set year accordingly.  */
268   int mon_remainder = mon % 12;
269   int negative_mon_remainder = mon_remainder < 0;
270   int mon_years = mon / 12 - negative_mon_remainder;
271   long int lyear_requested = year_requested;
272   long int year = lyear_requested + mon_years;
273
274   /* The other values need not be in range:
275      the remaining code handles minor overflows correctly,
276      assuming int and time_t arithmetic wraps around.
277      Major overflows are caught at the end.  */
278
279   /* Calculate day of year from year, month, and day of month.
280      The result need not be in range.  */
281   int mon_yday = ((__mon_yday[leapyear (year)]
282                    [mon_remainder + 12 * negative_mon_remainder])
283                   - 1);
284   long int lmday = mday;
285   long int yday = mon_yday + lmday;
286
287   time_t guessed_offset = *offset;
288
289   int sec_requested = sec;
290
291   if (LEAP_SECONDS_POSSIBLE)
292     {
293       /* Handle out-of-range seconds specially,
294          since ydhms_tm_diff assumes every minute has 60 seconds.  */
295       if (sec < 0)
296         sec = 0;
297       if (59 < sec)
298         sec = 59;
299     }
300
301   /* Invert CONVERT by probing.  First assume the same offset as last
302      time.  */
303
304   t0 = ydhms_diff (year, yday, hour, min, sec,
305                    EPOCH_YEAR - TM_YEAR_BASE, 0, 0, 0, - guessed_offset);
306
307   if (TIME_T_MAX / INT_MAX / 366 / 24 / 60 / 60 < 3)
308     {
309       /* time_t isn't large enough to rule out overflows, so check
310          for major overflows.  A gross check suffices, since if t0
311          has overflowed, it is off by a multiple of TIME_T_MAX -
312          TIME_T_MIN + 1.  So ignore any component of the difference
313          that is bounded by a small value.  */
314
315       /* Approximate log base 2 of the number of time units per
316          biennium.  A biennium is 2 years; use this unit instead of
317          years to avoid integer overflow.  For example, 2 average
318          Gregorian years are 2 * 365.2425 * 24 * 60 * 60 seconds,
319          which is 63113904 seconds, and rint (log2 (63113904)) is
320          26.  */
321       int ALOG2_SECONDS_PER_BIENNIUM = 26;
322       int ALOG2_MINUTES_PER_BIENNIUM = 20;
323       int ALOG2_HOURS_PER_BIENNIUM = 14;
324       int ALOG2_DAYS_PER_BIENNIUM = 10;
325       int LOG2_YEARS_PER_BIENNIUM = 1;
326
327       int approx_requested_biennia =
328         ((year_requested >> LOG2_YEARS_PER_BIENNIUM)
329          - ((EPOCH_YEAR - TM_YEAR_BASE) >> LOG2_YEARS_PER_BIENNIUM)
330          + (mday >> ALOG2_DAYS_PER_BIENNIUM)
331          + (hour >> ALOG2_HOURS_PER_BIENNIUM)
332          + (min >> ALOG2_MINUTES_PER_BIENNIUM)
333          + (LEAP_SECONDS_POSSIBLE ? 0 : sec >> ALOG2_SECONDS_PER_BIENNIUM));
334
335       int approx_biennia = t0 >> ALOG2_SECONDS_PER_BIENNIUM;
336       int diff = approx_biennia - approx_requested_biennia;
337       int abs_diff = diff < 0 ? - diff : diff;
338
339       /* IRIX 4.0.5 cc miscaculates TIME_T_MIN / 3: it erroneously
340          gives a positive value of 715827882.  Setting a variable
341          first then doing math on it seems to work.
342          (ghazi@caip.rutgers.edu) */
343       time_t time_t_max = TIME_T_MAX;
344       time_t time_t_min = TIME_T_MIN;
345       time_t overflow_threshold =
346         (time_t_max / 3 - time_t_min / 3) >> ALOG2_SECONDS_PER_BIENNIUM;
347
348       if (overflow_threshold < abs_diff)
349         {
350           /* Overflow occurred.  Try repairing it; this might work if
351              the time zone offset is enough to undo the overflow.  */
352           time_t repaired_t0 = -1 - t0;
353           approx_biennia = repaired_t0 >> ALOG2_SECONDS_PER_BIENNIUM;
354           diff = approx_biennia - approx_requested_biennia;
355           abs_diff = diff < 0 ? - diff : diff;
356           if (overflow_threshold < abs_diff)
357             return -1;
358           guessed_offset += repaired_t0 - t0;
359           t0 = repaired_t0;
360         }
361     }
362
363   /* Repeatedly use the error to improve the guess.  */
364
365   for (t = t1 = t2 = t0, dst2 = 0;
366        (gt = guess_time_tm (year, yday, hour, min, sec, &t,
367                             ranged_convert (convert, &t, &tm)),
368         t != gt);
369        t1 = t2, t2 = t, t = gt, dst2 = tm.tm_isdst != 0)
370     if (t == t1 && t != t2
371         && (tm.tm_isdst < 0
372             || (isdst < 0
373                 ? dst2 <= (tm.tm_isdst != 0)
374                 : (isdst != 0) != (tm.tm_isdst != 0))))
375       /* We can't possibly find a match, as we are oscillating
376          between two values.  The requested time probably falls
377          within a spring-forward gap of size GT - T.  Follow the common
378          practice in this case, which is to return a time that is GT - T
379          away from the requested time, preferring a time whose
380          tm_isdst differs from the requested value.  (If no tm_isdst
381          was requested and only one of the two values has a nonzero
382          tm_isdst, prefer that value.)  In practice, this is more
383          useful than returning -1.  */
384       goto offset_found;
385     else if (--remaining_probes == 0)
386       return -1;
387
388   /* We have a match.  Check whether tm.tm_isdst has the requested
389      value, if any.  */
390   if (isdst != tm.tm_isdst && 0 <= isdst && 0 <= tm.tm_isdst)
391     {
392       /* tm.tm_isdst has the wrong value.  Look for a neighboring
393          time with the right value, and use its UTC offset.
394
395          Heuristic: probe the adjacent timestamps in both directions,
396          looking for the desired isdst.  This should work for all real
397          time zone histories in the tz database.  */
398
399       /* Distance between probes when looking for a DST boundary.  In
400          tzdata2003a, the shortest period of DST is 601200 seconds
401          (e.g., America/Recife starting 2000-10-08 01:00), and the
402          shortest period of non-DST surrounded by DST is 694800
403          seconds (Africa/Tunis starting 1943-04-17 01:00).  Use the
404          minimum of these two values, so we don't miss these short
405          periods when probing.  */
406       int stride = 601200;
407
408       /* The longest period of DST in tzdata2003a is 536454000 seconds
409          (e.g., America/Jujuy starting 1946-10-01 01:00).  The longest
410          period of non-DST is much longer, but it makes no real sense
411          to search for more than a year of non-DST, so use the DST
412          max.  */
413       int duration_max = 536454000;
414
415       /* Search in both directions, so the maximum distance is half
416          the duration; add the stride to avoid off-by-1 problems.  */
417       int delta_bound = duration_max / 2 + stride;
418
419       int delta, direction;
420
421       for (delta = stride; delta < delta_bound; delta += stride)
422         for (direction = -1; direction <= 1; direction += 2)
423           {
424             time_t ot = t + delta * direction;
425             if ((ot < t) == (direction < 0))
426               {
427                 struct tm otm;
428                 ranged_convert (convert, &ot, &otm);
429                 if (otm.tm_isdst == isdst)
430                   {
431                     /* We found the desired tm_isdst.
432                        Extrapolate back to the desired time.  */
433                     t = guess_time_tm (year, yday, hour, min, sec, &ot, &otm);
434                     ranged_convert (convert, &t, &tm);
435                     goto offset_found;
436                   }
437               }
438           }
439     }
440
441  offset_found:
442   *offset = guessed_offset + t - t0;
443
444   if (LEAP_SECONDS_POSSIBLE && sec_requested != tm.tm_sec)
445     {
446       /* Adjust time to reflect the tm_sec requested, not the normalized value.
447          Also, repair any damage from a false match due to a leap second.  */
448       int sec_adjustment = (sec == 0 && tm.tm_sec == 60) - sec;
449       t1 = t + sec_requested;
450       t2 = t1 + sec_adjustment;
451       if (((t1 < t) != (sec_requested < 0))
452           | ((t2 < t1) != (sec_adjustment < 0))
453           | ! (*convert) (&t, &tm))
454         return -1;
455     }
456
457   *tp = tm;
458   return t;
459 }
460
461
462 /* FIXME: This should use a signed type wide enough to hold any UTC
463    offset in seconds.  'int' should be good enough for GNU code.  We
464    can't fix this unilaterally though, as other modules invoke
465    __mktime_internal.  */
466 static time_t localtime_offset;
467
468 /* Convert *TP to a time_t value.  */
469 time_t
470 mktime (struct tm *tp)
471 {
472 #ifdef _LIBC
473   /* POSIX.1 8.1.1 requires that whenever mktime() is called, the
474      time zone names contained in the external variable `tzname' shall
475      be set as if the tzset() function had been called.  */
476   __tzset ();
477 #endif
478
479   return __mktime_internal (tp, __localtime_r, &localtime_offset);
480 }
481
482 #ifdef weak_alias
483 weak_alias (mktime, timelocal)
484 #endif
485
486 #ifdef _LIBC
487 libc_hidden_def (mktime)
488 libc_hidden_weak (timelocal)
489 #endif
490 \f
491 #if DEBUG
492
493 static int
494 not_equal_tm (const struct tm *a, const struct tm *b)
495 {
496   return ((a->tm_sec ^ b->tm_sec)
497           | (a->tm_min ^ b->tm_min)
498           | (a->tm_hour ^ b->tm_hour)
499           | (a->tm_mday ^ b->tm_mday)
500           | (a->tm_mon ^ b->tm_mon)
501           | (a->tm_year ^ b->tm_year)
502           | (a->tm_mday ^ b->tm_mday)
503           | (a->tm_yday ^ b->tm_yday)
504           | (a->tm_isdst ^ b->tm_isdst));
505 }
506
507 static void
508 print_tm (const struct tm *tp)
509 {
510   if (tp)
511     printf ("%04d-%02d-%02d %02d:%02d:%02d yday %03d wday %d isdst %d",
512             tp->tm_year + TM_YEAR_BASE, tp->tm_mon + 1, tp->tm_mday,
513             tp->tm_hour, tp->tm_min, tp->tm_sec,
514             tp->tm_yday, tp->tm_wday, tp->tm_isdst);
515   else
516     printf ("0");
517 }
518
519 static int
520 check_result (time_t tk, struct tm tmk, time_t tl, const struct tm *lt)
521 {
522   if (tk != tl || !lt || not_equal_tm (&tmk, lt))
523     {
524       printf ("mktime (");
525       print_tm (lt);
526       printf (")\nyields (");
527       print_tm (&tmk);
528       printf (") == %ld, should be %ld\n", (long int) tk, (long int) tl);
529       return 1;
530     }
531
532   return 0;
533 }
534
535 int
536 main (int argc, char **argv)
537 {
538   int status = 0;
539   struct tm tm, tmk, tml;
540   struct tm *lt;
541   time_t tk, tl, tl1;
542   char trailer;
543
544   if ((argc == 3 || argc == 4)
545       && (sscanf (argv[1], "%d-%d-%d%c",
546                   &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &trailer)
547           == 3)
548       && (sscanf (argv[2], "%d:%d:%d%c",
549                   &tm.tm_hour, &tm.tm_min, &tm.tm_sec, &trailer)
550           == 3))
551     {
552       tm.tm_year -= TM_YEAR_BASE;
553       tm.tm_mon--;
554       tm.tm_isdst = argc == 3 ? -1 : atoi (argv[3]);
555       tmk = tm;
556       tl = mktime (&tmk);
557       lt = localtime (&tl);
558       if (lt)
559         {
560           tml = *lt;
561           lt = &tml;
562         }
563       printf ("mktime returns %ld == ", (long int) tl);
564       print_tm (&tmk);
565       printf ("\n");
566       status = check_result (tl, tmk, tl, lt);
567     }
568   else if (argc == 4 || (argc == 5 && strcmp (argv[4], "-") == 0))
569     {
570       time_t from = atol (argv[1]);
571       time_t by = atol (argv[2]);
572       time_t to = atol (argv[3]);
573
574       if (argc == 4)
575         for (tl = from; by < 0 ? to <= tl : tl <= to; tl = tl1)
576           {
577             lt = localtime (&tl);
578             if (lt)
579               {
580                 tmk = tml = *lt;
581                 tk = mktime (&tmk);
582                 status |= check_result (tk, tmk, tl, &tml);
583               }
584             else
585               {
586                 printf ("localtime (%ld) yields 0\n", (long int) tl);
587                 status = 1;
588               }
589             tl1 = tl + by;
590             if ((tl1 < tl) != (by < 0))
591               break;
592           }
593       else
594         for (tl = from; by < 0 ? to <= tl : tl <= to; tl = tl1)
595           {
596             /* Null benchmark.  */
597             lt = localtime (&tl);
598             if (lt)
599               {
600                 tmk = tml = *lt;
601                 tk = tl;
602                 status |= check_result (tk, tmk, tl, &tml);
603               }
604             else
605               {
606                 printf ("localtime (%ld) yields 0\n", (long int) tl);
607                 status = 1;
608               }
609             tl1 = tl + by;
610             if ((tl1 < tl) != (by < 0))
611               break;
612           }
613     }
614   else
615     printf ("Usage:\
616 \t%s YYYY-MM-DD HH:MM:SS [ISDST] # Test given time.\n\
617 \t%s FROM BY TO # Test values FROM, FROM+BY, ..., TO.\n\
618 \t%s FROM BY TO - # Do not test those values (for benchmark).\n",
619             argv[0], argv[0], argv[0]);
620
621   return status;
622 }
623
624 #endif /* DEBUG */
625 \f
626 /*
627 Local Variables:
628 compile-command: "gcc -DDEBUG -DSTDC_HEADERS -Wall -W -O -g mktime.c -o mktime"
629 End:
630 */