summaryrefslogtreecommitdiff
path: root/pot.h
blob: b50dc273b324a28a84b7f264b3010b8806a007f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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

#endif