26 lines
300 B
C
26 lines
300 B
C
/* $Id$ */
|
|
|
|
/*
|
|
* 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
|