if we're not using GNU gettext #define the i18n stuff away (and get

rid of the gettextstub.c stuff as well)

CVS patchset: 1412
CVS date: 1997/02/14 02:04:37
This commit is contained in:
ewt 1997-02-14 02:04:37 +00:00
parent 22b96549a7
commit a7afd38d35
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
#include <libintl.h>
#define _(String) gettext((String))
#else
void bindtextdomain(const char * package, const char * dir);
void textdomain(const char * package);
#define bindtextdomain(foo, bar)
#define textdomain(foo)
#define _(String) (String)
#endif