summaryrefslogtreecommitdiff
path: root/libc-symbols.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-11-26 17:45:08 +0000
committerRoland McGrath <roland@gnu.org>1995-11-26 17:45:08 +0000
commitf45e34fcaea4f89dc44491a8ff254e24812f95c6 (patch)
tree111a272988b30cf1c2cccf6ce46d486f81cfbfd5 /libc-symbols.h
parentcbd3dceb398526fda2fc62674dc873c5c8f5b38d (diff)
Sun Nov 26 12:44:38 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* libc-symbols.h (N_): New macro.
Diffstat (limited to 'libc-symbols.h')
-rw-r--r--libc-symbols.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/libc-symbols.h b/libc-symbols.h
index c895fe4d36..9d6c2f8f34 100644
--- a/libc-symbols.h
+++ b/libc-symbols.h
@@ -51,10 +51,15 @@ Cambridge, MA 02139, USA. */
*/
#ifndef ASSEMBLER
-/* Define the macro `_' for conveniently marking translatable strings
- in the libc source code. */
+
+/* Define the macros `_' and `N_' for conveniently marking translatable
+ strings in the libc source code. */
+
+#define N_(msgid) msgid
+
#include <libintl.h>
extern const char _libc_intl_domainname[];
+
#ifdef dgettext
/* This is defined as an optimizing macro, so use it. */
#define _(msgid) dgettext (_libc_intl_domainname, (msgid))
@@ -63,6 +68,7 @@ extern const char _libc_intl_domainname[];
instead of an optimizing macro. */
#define _(msgid) __dgettext (_libc_intl_domainname, (msgid))
#endif
+
#endif
/*