* src/wordsplit.c [ENABLE_NLS]: include gettext.h
This commit is contained in:
Sergey Poznyakoff 2011-04-30 18:57:54 +03:00
parent d34f74c01c
commit 67c1b9be95

View file

@ -26,7 +26,11 @@
#include <stdio.h>
#include <stdarg.h>
#include <gettext.h>
#if ENABLE_NLS
# include <gettext.h>
#else
# define gettext(msgid) msgid
#endif
#define _(msgid) gettext (msgid)
#define N_(msgid) msgid