summaryrefslogtreecommitdiff
path: root/pot.h
blob: 0ab76d420ec02a2328383e107836451ae61c6bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef POT_H
#define POT_H

#ifdef USE_GETTEXT

#include <libintl.h>

#define _(x)	gettext((x))

#else

#define _(x) 	(x)

#endif

void gettexton(void);

#endif