OSDN Git Service

Message catalog support for internationalization is not currently
[uclinux-h8/uClibc.git] / include / libintl.h
1 /* Message catalog support for internationalization is not currently
2  * provided by uClibc, and so I have added macros here to disable it.
3  * Sorry about that.
4  */
5
6 #ifndef _LIBINTL_H
7 #define _LIBINTL_H      1
8
9 #undef bindtextdomain
10 #define bindtextdomain(Domain, Directory) /* empty */
11 #undef textdomain
12 #define textdomain(Domain) /* empty */
13 #define _(Text) (Text)
14 #define N_(Text) (Text)
15
16
17 #endif /* _LIBINTL_H */
18