prototype bindtextdomain(), textdomain() if libintl.h isn't being used
authorewt <devnull@localhost>
Fri, 24 Jan 1997 19:06:16 +0000 (19:06 +0000)
committerewt <devnull@localhost>
Fri, 24 Jan 1997 19:06:16 +0000 (19:06 +0000)
CVS patchset: 1363
CVS date: 1997/01/24 19:06:16

misc/intl.h

index c776345..5342e9b 100644 (file)
@@ -6,6 +6,8 @@
 #include <libintl.h>
 #define _(String) gettext((String))
 #else
+void bindtextdomain(const char * package, const char * dir);
+void textdomain(const char * package);
 #define _(String) (String)
 #endif