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