1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#define _(msgid) msgid
#define PACKAGE_BUGREPORT "bug-coreutils@gnu.org"
static inline void
emit_bug_reporting_address (void)
{
/* TRANSLATORS: The placeholder indicates the bug-reporting address
for this package. Please add _another line_ saying
"Report translation bugs to <...>\n" with the address for translation
bugs (typically your translation team's web or email address). */
printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
}
static inline char *quotearg (char *s)
{
static char rval[10];
sprintf (rval, "\"\\\"%s\\\"\"", s);
return (rval);
}
|