Update to 4.01.
[profile/ivi/quota.git] / pot.h
1 #ifndef GUARD_POT_H
2 #define GUARD_POT_H
3
4 #ifdef USE_GETTEXT
5
6 #include <libintl.h>
7
8 #define _(x)    gettext((x))
9
10 #else
11
12 #define _(x)    (x)
13
14 #endif
15
16 void gettexton(void);
17
18 #endif