summaryrefslogtreecommitdiff
path: root/pot.h
diff options
context:
space:
mode:
Diffstat (limited to 'pot.h')
-rw-r--r--pot.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/pot.h b/pot.h
index b50dc27..f77c550 100644
--- a/pot.h
+++ b/pot.h
@@ -1,24 +1,18 @@
#ifndef _POT_H
#define _POT_H
-#define __GETTEXT__
-/***************************************************************************
- * if you want to turn off gettext without changing sources
- * undefine __GETTEXT__
- ***************************************************************************/
-
#ifdef __GETTEXT__
#include <libintl.h>
#define _(x) gettext((x))
-void gettexton(void);
-
#else
#define _(x) (x)
#endif
+void gettexton(void);
+
#endif