aboutsummaryrefslogtreecommitdiff
path: root/gcc/intl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/intl.h')
-rw-r--r--gcc/intl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/intl.h b/gcc/intl.h
index 829364a..0d91e3f 100644
--- a/gcc/intl.h
+++ b/gcc/intl.h
@@ -47,14 +47,18 @@ extern const char *fake_ngettext (const char *singular, const char *plural,
#endif
+/* Used to immediately translate the argument. */
#ifndef _
# define _(msgid) gettext (msgid)
#endif
+/* Used to mark strings that will be translated later. */
#ifndef N_
# define N_(msgid) msgid
#endif
+/* Like N_, but for GCC diagnostic format strings. See ABOUT-GCC-NLS for
+ details. */
#ifndef G_
# define G_(gmsgid) gmsgid
#endif