1995-03-23 19:58:48 +00:00
|
|
|
/* $NetBSD: catopen.c,v 1.5 1995/03/23 19:59:06 jtc Exp $ */
|
1995-02-27 13:06:20 +00:00
|
|
|
|
1994-10-06 05:44:39 +00:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, 10/05/94
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
1995-03-23 19:58:48 +00:00
|
|
|
#ifdef __indr_reference
|
|
|
|
__indr_reference(_catopen,catopen);
|
1994-10-06 05:44:39 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#include <nl_types.h>
|
|
|
|
|
1994-12-20 16:18:16 +00:00
|
|
|
extern nl_catd _catopen __P((__const char *, int));
|
1994-10-06 05:44:39 +00:00
|
|
|
|
|
|
|
nl_catd
|
|
|
|
catopen(name, oflag)
|
1994-12-20 16:18:16 +00:00
|
|
|
__const char *name;
|
1994-10-06 05:44:39 +00:00
|
|
|
int oflag;
|
|
|
|
{
|
1994-11-18 15:36:11 +00:00
|
|
|
return _catopen(name, oflag);
|
1994-10-06 05:44:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|