summaryrefslogtreecommitdiff
path: root/lib/libc/nls/_catopen.c
blob: 7cb3804bd9c40184b74a66935ea05b172d6ce32f (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
/*	$NetBSD: _catopen.c,v 1.4 1997/11/04 23:52:52 thorpej Exp $	*/

/*
 * Written by J.T. Conklin, 10/05/94
 * Public domain.
 */

#include <sys/cdefs.h>

#ifdef __indr_reference
__indr_reference(_catopen,catopen)
#else

#include <nl_types.h>
nl_catd	_catopen __P((__const char *, int));	/* XXX */

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

#endif