diff options
Diffstat (limited to 'libuargp/argp-parse.c')
-rw-r--r-- | libuargp/argp-parse.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/libuargp/argp-parse.c b/libuargp/argp-parse.c index 912e3e2ab..ecd5e7eb6 100644 --- a/libuargp/argp-parse.c +++ b/libuargp/argp-parse.c @@ -48,19 +48,8 @@ char *alloca (); #include <features.h> #ifndef _ -/* This is for other GNU distributions with internationalized messages. - When compiling libc, the _ macro is predefined. */ -# if (defined HAVE_LIBINTL_H || defined _LIBC) && defined __UCLIBC_HAS_GETTEXT_AWARENESS__ -# include <libintl.h> -# ifdef _LIBC -# undef dgettext -# define dgettext(domain, msgid) \ - INTUSE(__dcgettext) (domain, msgid, LC_MESSAGES) -# endif -# else -# define dgettext(domain, msgid) (msgid) -# define gettext(msgid) (msgid) -# endif +# define dgettext(domain, msgid) (msgid) +# define gettext(msgid) (msgid) #endif #ifndef N_ # define N_(msgid) (msgid) |