** A non-static declaration of tzsetwall in a system header file
** may cause a warning about this upcoming static declaration...
*/
+static void tzsetwall(void);
static
+#else
+void tzsetwall(void);
#endif /* !defined STD_INSPIRED */
void
tzsetwall(void)
}
#ifdef STD_INSPIRED
+struct tm * offtime(const time_t *const timep, const long offset);
struct tm *
offtime(const time_t *const timep, const long offset)
}
#ifdef STD_INSPIRED
+time_t timelocal(struct tm *const tmp);
time_t
timelocal(struct tm *const tmp)
return mktime(tmp);
}
+time_t timegm(struct tm *const tmp);
+
time_t
timegm(struct tm *const tmp)
{
return time1(tmp, gmtsub, 0L);
}
+time_t timeoff(struct tm *const tmp, const long offset);
+
time_t
timeoff(struct tm *const tmp, const long offset)
{
return 0;
}
+time_t time2posix(time_t t);
+
time_t
time2posix(time_t t)
{
return t - leapcorr(&t);
}
+time_t posix2time(time_t t);
+
time_t
posix2time(time_t t)
{