1994-10-06 08:44:39 +03:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, 10/05/94
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
#ifdef __weak_reference
|
1994-11-18 18:36:11 +03:00
|
|
|
__weak_reference(_catopen,catopen);
|
1994-10-06 08:44:39 +03:00
|
|
|
#else
|
|
|
|
|
|
|
|
#include <nl_types.h>
|
|
|
|
|
1994-12-20 19:18:16 +03:00
|
|
|
extern nl_catd _catopen __P((__const char *, int));
|
1994-10-06 08:44:39 +03:00
|
|
|
|
|
|
|
nl_catd
|
|
|
|
catopen(name, oflag)
|
1994-12-20 19:18:16 +03:00
|
|
|
__const char *name;
|
1994-10-06 08:44:39 +03:00
|
|
|
int oflag;
|
|
|
|
{
|
1994-11-18 18:36:11 +03:00
|
|
|
return _catopen(name, oflag);
|
1994-10-06 08:44:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|