mirror of
git://git.gnu.org.ua/wordsplit.git
synced 2025-04-26 00:29:54 +03:00
Bugfix.
* src/wordsplit.c [ENABLE_NLS]: include gettext.h
This commit is contained in:
parent
d34f74c01c
commit
67c1b9be95
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue