X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ftime%2Fgmtime_r.c;h=22aec2c2e2ef21b8a1beb5bcd84da5988b3b41de;hb=722a1ae3351a03ab25010dbebd492eced664853b;hp=8cbdadcb5d02164b845a7035dd68502ed794240b;hpb=d78be392e144c338f58ce6a51d82c859126c137d;p=musl diff --git a/src/time/gmtime_r.c b/src/time/gmtime_r.c index 8cbdadcb..22aec2c2 100644 --- a/src/time/gmtime_r.c +++ b/src/time/gmtime_r.c @@ -1,8 +1,5 @@ #include "time_impl.h" #include -#include "libc.h" - -extern const char __gmt[]; struct tm *__gmtime_r(const time_t *restrict t, struct tm *restrict tm) { @@ -12,7 +9,7 @@ struct tm *__gmtime_r(const time_t *restrict t, struct tm *restrict tm) } tm->tm_isdst = 0; tm->__tm_gmtoff = 0; - tm->__tm_zone = __gmt; + tm->__tm_zone = __utc; return tm; }