/* * Written by J.T. Conklin, 10/05/94 * Public domain. */ #if defined(LIBC_SCCS) && !defined(lint) static char rcsid[] = "$OpenBSD: _catopen.c,v 1.4 2002/02/16 21:27:23 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include #ifdef __indr_reference __indr_reference(_catopen,catopen); #else #include extern nl_catd _catopen(const char *, int); nl_catd catopen(name, oflag) const char *name; int oflag; { return _catopen(name, oflag); } #endif