aboutsummaryrefslogtreecommitdiff
path: root/texinfo/lib/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'texinfo/lib/system.h')
-rw-r--r--texinfo/lib/system.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/texinfo/lib/system.h b/texinfo/lib/system.h
index c0595c48d38..cb3ed0531ff 100644
--- a/texinfo/lib/system.h
+++ b/texinfo/lib/system.h
@@ -37,7 +37,11 @@
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
+
+/* For gettext (NLS). */
#include <libintl.h>
+#define _(String) gettext (String)
+#define N_(String) (String)
/* Don't use bcopy! Use memmove if source and destination may overlap,
memcpy otherwise. */