From 7bf74d9aba6d96eac8011fc96b1c3fc8dba9e422 Mon Sep 17 00:00:00 2001
From: "Eric S. Raymond" <esr@thyrsus.com>
Date: Sat, 12 Jun 1999 22:54:59 +0000
Subject: Initial revision

svn path=/trunk/; revision=2498
---
 i18n.h | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 i18n.h

diff --git a/i18n.h b/i18n.h
new file mode 100644
index 00000000..dd08e601
--- /dev/null
+++ b/i18n.h
@@ -0,0 +1,11 @@
+/* Dummy header for libintl.h */
+
+#ifdef ENABLE_NLS
+#undef __OPTIMIZE__
+#include <libintl.h>
+#define _(String) gettext((String))
+#define N_(String) (String)
+#else
+#define _(String) (String)
+#define N_(String) (String)
+#endif
-- 
cgit v1.2.3