don't remap internal-use syscall macros to nonexistent time32 syscalls
[musl] / src / time / timegm.c
index e7a7939..4e5907d 100644 (file)
@@ -13,6 +13,6 @@ time_t timegm(struct tm *tm)
        *tm = new;
        tm->tm_isdst = 0;
        tm->__tm_gmtoff = 0;
-       tm->__tm_zone = "GMT";
+       tm->__tm_zone = __utc;
        return t;
 }