NetBSD/lib/libc/nls/_catopen.c
christos 86741d79ab - Fix the remaining indr_references so that they define lint symbols.
- Add an internal symbol for strerror_r (thanks klaus for noticing)
- Remove internal __strerror
2005-07-30 15:21:20 +00:00

29 lines
582 B
C

/* $NetBSD: _catopen.c,v 1.6 2005/07/30 15:21:20 christos Exp $ */
/*
* Written by J.T. Conklin, 10/05/94
* Public domain.
*/
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: _catopen.c,v 1.6 2005/07/30 15:21:20 christos Exp $");
#endif /* LIBC_SCCS and not lint */
#if defined(__indr_reference) && !defined(__lint__)
__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