X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ftime%2Fgmtime_r.c;h=8cbdadcb5d02164b845a7035dd68502ed794240b;hb=5cc187215681c2fc1563ad5136c389249aa3f70e;hp=fee01bd6ee866434df7c9efe13e21f1fd99572a2;hpb=ea81c0624f0213430ae8fb959e30373eeaaf391c;p=musl diff --git a/src/time/gmtime_r.c b/src/time/gmtime_r.c index fee01bd6..8cbdadcb 100644 --- a/src/time/gmtime_r.c +++ b/src/time/gmtime_r.c @@ -2,6 +2,8 @@ #include #include "libc.h" +extern const char __gmt[]; + struct tm *__gmtime_r(const time_t *restrict t, struct tm *restrict tm) { if (__secs_to_tm(*t, tm) < 0) { @@ -10,7 +12,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 = __gmt; return tm; }