26 lines
352 B
C
26 lines
352 B
C
![]() |
/* $NetBSD: _catclose.c,v 1.1 1996/05/13 23:29:34 jtc Exp $ */
|
||
|
|
||
|
/*
|
||
|
* Written by J.T. Conklin, 10/05/94
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
|
||
|
#ifdef __indr_reference
|
||
|
__indr_reference(_catclose,catclose);
|
||
|
#else
|
||
|
|
||
|
#include <nl_types.h>
|
||
|
|
||
|
extern int _catclose __P((nl_catd));
|
||
|
|
||
|
int
|
||
|
catclose(catd)
|
||
|
nl_catd catd;
|
||
|
{
|
||
|
return _catclose(catd);
|
||
|
}
|
||
|
|
||
|
#endif
|