summaryrefslogtreecommitdiff
path: root/lib/libc/nls/_catopen.c
blob: c146156edf7a06ca496fe89564e3d7b1abcd853c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Written by J.T. Conklin, 10/05/94
 * Public domain.
 */

#if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: _catopen.c,v 1.3 1996/09/15 09:31:21 tholo Exp $";
#endif /* LIBC_SCCS and not lint */

#include <sys/cdefs.h>

#ifdef __indr_reference
__indr_reference(_catopen,catopen);
#else

#include <nl_types.h>

extern nl_catd _catopen __P((const char *, int));

nl_catd
catopen(name, oflag)
	const char *name;
	int oflag;
{
	return _catopen(name, oflag);
}

#endif