summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2012-09-17 05:28:25 +0200
committerrofl0r <retnyg@gmx.net>2012-09-17 05:28:25 +0200
commit2f24f3d303e3cc6b234b15b328533b66c13a4a1e (patch)
tree07e67101fce821e4f8abf24abbf491ba565f67b1 /include
parent6841f89fac645dec59fcd8bb92da43f2a0adce23 (diff)
downloadgettext-tiny-2f24f3d303e3cc6b234b15b328533b66c13a4a1e.tar.gz
added libintl.h
Diffstat (limited to 'include')
-rw-r--r--include/libintl.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/libintl.h b/include/libintl.h
new file mode 100644
index 0000000..868373e
--- /dev/null
+++ b/include/libintl.h
@@ -0,0 +1,13 @@
+#ifndef LIBINTL_H
+#define LIBINTL_H
+
+#define gettext(X) (X)
+#define gettext_noop(X) (X)
+#define bindtextdomain(X, Y)
+#define textdomain(X)
+
+#include <stdio.h>
+#define gettext_printf(args...) printf(args)
+
+#endif
+