From a7afd38d35cf918d91989d6639e6291bc93a8a1f Mon Sep 17 00:00:00 2001 From: ewt Date: Fri, 14 Feb 1997 02:04:37 +0000 Subject: [PATCH] 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 --- misc/intl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/intl.h b/misc/intl.h index 5342e9b..486093e 100644 --- a/misc/intl.h +++ b/misc/intl.h @@ -6,8 +6,8 @@ #include #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 -- 2.7.4