diff --git a/libc-top-half/musl/src/time/strftime.c b/libc-top-half/musl/src/time/strftime.c index 949fede8..cc53d536 100644 --- a/libc-top-half/musl/src/time/strftime.c +++ b/libc-top-half/musl/src/time/strftime.c @@ -122,12 +122,10 @@ const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm * case 'R': fmt = "%H:%M"; goto recu_strftime; -#ifdef __wasilibc_unmodified_upstream // timezone data case 's': val = __tm_to_secs(tm) - tm->__tm_gmtoff; width = 1; goto number; -#endif case 'S': val = tm->tm_sec; goto number;