blob: 5107826ecfc17738f34871381b5e371d0b8f5748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $OpenBSD: _catopen.c,v 1.7 2012/12/05 23:20:00 deraadt Exp $ */
/*
* Written by J.T. Conklin, 10/05/94
* Public domain.
*/
#include <sys/types.h>
#ifdef __indr_reference
__indr_reference(_catopen,catopen);
#else
#include <nl_types.h>
extern nl_catd _catopen(const char *, int);
nl_catd
catopen(const char *name, int oflag)
{
return _catopen(name, oflag);
}
#endif
|