29 lines
393 B
C
29 lines
393 B
C
|
/* $Id$ */
|
||
|
|
||
|
/*
|
||
|
* Written by J.T. Conklin, 10/05/94
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
|
||
|
#ifdef __indr_reference
|
||
|
__indr_reference(_catgets,catgets);
|
||
|
#else
|
||
|
|
||
|
#include <nl_types.h>
|
||
|
|
||
|
extern char * _catgets __P((nl_catd, int, int, char *));
|
||
|
|
||
|
char *
|
||
|
catgets(catd, set_id, msg_id, s)
|
||
|
nl_catd catd;
|
||
|
int set_id;
|
||
|
int msg_id;
|
||
|
char *s;
|
||
|
{
|
||
|
return _catgets(catd, set_id, msg_id, s);
|
||
|
}
|
||
|
|
||
|
#endif
|