mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-15 01:34:10 +03:00
move __utc string object to its own translation unit
having it in __tz.c caused gmtime[_r] and timegm to pull in all of the time zone code despite having no need for it.
This commit is contained in:
parent
dd1e63c363
commit
ef7d0ae212
@ -24,7 +24,6 @@ weak_alias(__tzname, tzname);
|
||||
|
||||
static char std_name[TZNAME_MAX+1];
|
||||
static char dst_name[TZNAME_MAX+1];
|
||||
const char __utc[] = "UTC";
|
||||
|
||||
static int dst_off;
|
||||
static int r0[5], r1[5];
|
||||
|
3
src/time/__utc.c
Normal file
3
src/time/__utc.c
Normal file
@ -0,0 +1,3 @@
|
||||
#include "time_impl.h"
|
||||
|
||||
const char __utc[] = "UTC";
|
Loading…
x
Reference in New Issue
Block a user