NetBSD/lib/libc/nls/catclose.c
jtc 56fa6d53b4 Public versions of catopen(), catgets(), and catclose().
Implemented with weak references if they are supported, otherwise by
function calls that call the private versions.
1994-10-06 05:44:39 +00:00

24 lines
286 B
C

/*
* Written by J.T. Conklin, 10/05/94
* Public domain.
*/
#include <sys/cdefs.h>
#ifdef __weak_reference
__weak_reference(__catclose,catclose);
#else
#include <nl_types.h>
extern void __catclose __P((nl_catd));
void
catclose(catd)
nl_catd catd;
{
__catclose(catd);
}
#endif