diff options
author | Rich Felker <dalias@aerifal.cx> | 2024-07-23 12:01:41 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2024-07-23 12:01:41 -0400 |
commit | ef7d0ae21240eac9fc1e8088112bfb0fac507578 (patch) | |
tree | 4ba521c9ddbd54be6ba485ba83d93aeb171cca06 /src/time/__utc.c | |
parent | dd1e63c3638d5f9afb857fccf6ce1415ca5f1b8b (diff) | |
download | musl-ef7d0ae21240eac9fc1e8088112bfb0fac507578.tar.gz |
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.
Diffstat (limited to 'src/time/__utc.c')
-rw-r--r-- | src/time/__utc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/time/__utc.c b/src/time/__utc.c new file mode 100644 index 00000000..9e8bfc58 --- /dev/null +++ b/src/time/__utc.c @@ -0,0 +1,3 @@ +#include "time_impl.h" + +const char __utc[] = "UTC"; |