(STRTOX): Use new constant as error message format string in macro.
Suggestion from Andreas Schwab.
/* The value to return to the calling program. */
static int exit_status;
+static char *const cfcc_msg =
+ N_("%s: character(s) following character constant");
+
/* The name this program was run with. */
char *program_name;
val = *(unsigned char *) ++s; \
if (*++s != 0) \
{ \
- error (0, 0, \
- _("%s: character(s) following character constant"), s); \
+ error (0, 0, _(cfcc_msg), s); \
exit_status = 1; \
} \
} \