* lib/boot-time-aux.h (SIZEOF): Remove; no longer used,
now that the code uses countof.
- nstrftime: fix size typo when compiling for glibc
- * lib/strftime.c (c_weekday_names, c_month_names) [COMPILE_WIDE]:
- Fix size typo.
-
2026-03-16 Paul Eggert <eggert@cs.ucla.edu>
stdbit-h: don’t generate some dummy .o files
#if !defined _NL_CURRENT && (HAVE_ONLY_C_LOCALE || (USE_C_LOCALE && !HAVE_STRFTIME_L))
-static CHAR_T const c_weekday_names[][sizeof L_("Wednesday")] =
+static CHAR_T const c_weekday_names[][sizeof "Wednesday"] =
{
L_("Sunday"), L_("Monday"), L_("Tuesday"), L_("Wednesday"),
L_("Thursday"), L_("Friday"), L_("Saturday")
};
-static CHAR_T const c_month_names[][sizeof L_("September")] =
+static CHAR_T const c_month_names[][sizeof "September"] =
{
L_("January"), L_("February"), L_("March"), L_("April"), L_("May"),
L_("June"), L_("July"), L_("August"), L_("September"), L_("October"),