Include gettext.h instead of <libintl.h> with #ifdefs.
[gnulib.git] / lib / quotearg.c
index 9d43956..2dc9b1c 100644 (file)
 
 #include <ctype.h>
 
-#if ENABLE_NLS
-# include <libintl.h>
-# define _(text) gettext (text)
-#else
-# define _(text) text
-#endif
-#define N_(text) text
+#include "gettext.h"
+#define _(msgid) gettext (msgid)
+#define N_(msgid) msgid
 
 #if HAVE_LIMITS_H
 # include <limits.h>