if we're not using GNU gettext #define the i18n stuff away (and get
authorewt <devnull@localhost>
Fri, 14 Feb 1997 02:04:37 +0000 (02:04 +0000)
committerewt <devnull@localhost>
Fri, 14 Feb 1997 02:04:37 +0000 (02:04 +0000)
rid of the gettextstub.c stuff as well)

CVS patchset: 1412
CVS date: 1997/02/14 02:04:37

misc/intl.h

index 5342e9b..486093e 100644 (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