56fa6d53b4
Implemented with weak references if they are supported, otherwise by function calls that call the private versions.
24 lines
286 B
C
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
|