remove hand-written crt1.s and Scrt1.s files for all archs
[musl] / src / time / gmtime_r.c
index 0272870..8cbdadc 100644 (file)
@@ -2,15 +2,17 @@
 #include <errno.h>
 #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) {
-               errno = EINVAL;
+               errno = EOVERFLOW;
                return 0;
        }
        tm->tm_isdst = 0;
        tm->__tm_gmtoff = 0;
-       tm->__tm_zone = "GMT";
+       tm->__tm_zone = __gmt;
        return tm;
 }