Assume HAVE_TZSET in time/mktime.c

This patch does not affect glibc.  It affects only Gnulib-specific
code and is for coordination with Gnulib.
This commit is contained in:
Paul Eggert 2022-09-08 20:08:32 -05:00
parent a23820f605
commit 82a1ec8510
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ my_tzset (void)
const char *tz = getenv ("TZ");
if (tz != NULL && strchr (tz, '/') != NULL)
_putenv ("TZ=");
# elif HAVE_TZSET
# else
tzset ();
# endif
}