summaryrefslogtreecommitdiff
path: root/src/locale/catopen.c
blob: 3fbc77178fb24e7c9661f383dccdd9b762387957 (plain) (blame)
1
2
3
4
5
6
7
8
#include <nl_types.h>
#include <errno.h>

nl_catd catopen (const char *name, int oflag)
{
	errno = EOPNOTSUPP;
	return (nl_catd)-1;
}