Initial revision
authorroot <devnull@localhost>
Fri, 29 Mar 1996 01:35:33 +0000 (01:35 +0000)
committerroot <devnull@localhost>
Fri, 29 Mar 1996 01:35:33 +0000 (01:35 +0000)
CVS patchset: 494
CVS date: 1996/03/29 01:35:33

gettextstub.c [new file with mode: 0644]

diff --git a/gettextstub.c b/gettextstub.c
new file mode 100644 (file)
index 0000000..1b01f81
--- /dev/null
@@ -0,0 +1,16 @@
+/* this is so we can link RPM without -lintl. It makes it about 10k
+   smaller, so its worth doing for tight corners (like install time) */
+
+void bindtextdomain(char * a, char * b);
+void textdomain(char * a);
+char * gettext(char * a);
+
+void bindtextdomain(char * a, char * b) {
+}
+
+char * gettext(char * a) {
+    return a;
+}
+
+void textdomain(char * a) {
+}