fix semctl with SEM_STAT_ANY
[musl] / src / locale / catopen.c
1 #include <nl_types.h>
2 #include <errno.h>
3
4 nl_catd catopen (const char *name, int oflag)
5 {
6         errno = EOPNOTSUPP;
7         return (nl_catd)-1;
8 }