| 1 | #include <libintl.h> |
| 2 | #include <string.h> |
| 3 | #include <strings.h> |
| 4 | #include <errno.h> |
| 5 | |
| 6 | char *bind_textdomain_codeset(const char *domainname, const char *codeset) |
| 7 | { |
| 8 | 	if (codeset && strcasecmp(codeset, "UTF-8")) |
| 9 | 		errno = EINVAL; |
| 10 | 	return NULL; |
| 11 | } |