libintl.h 413 B

123456789101112131415161718
  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. #ifndef _LIBINTL_H
  6. #define _LIBINTL_H 1
  7. #undef bindtextdomain
  8. #define bindtextdomain(Domain, Directory) /* empty */
  9. #undef textdomain
  10. #define textdomain(Domain) /* empty */
  11. #define _(Text) (Text)
  12. #define N_(Text) (Text)
  13. #endif /* _LIBINTL_H */