summaryrefslogtreecommitdiff
path: root/pot.h
blob: f77c5503fd0e068cbafcca5e457f093d8aa4d12e (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 __GETTEXT__

#include <libintl.h>

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

#else

#define _(x) 	(x)

#endif

void gettexton(void);

#endif