1997-11-05 02:52:05 +03:00
|
|
|
/* $NetBSD: _catgets.c,v 1.5 1997/11/04 23:52:49 thorpej Exp $ */
|
1996-05-14 03:29:32 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, 10/05/94
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
#ifdef __indr_reference
|
1997-11-05 02:52:05 +03:00
|
|
|
__indr_reference(_catgets,catgets)
|
1996-05-14 03:29:32 +04:00
|
|
|
#else
|
|
|
|
|
|
|
|
#include <nl_types.h>
|
1997-07-17 22:30:09 +04:00
|
|
|
char *_catgets __P((nl_catd, int, int, const char *)); /* XXX */
|
1996-05-14 03:29:32 +04:00
|
|
|
|
|
|
|
char *
|
|
|
|
catgets(catd, set_id, msg_id, s)
|
|
|
|
nl_catd catd;
|
|
|
|
int set_id;
|
|
|
|
int msg_id;
|
1996-05-17 01:51:22 +04:00
|
|
|
const char *s;
|
1996-05-14 03:29:32 +04:00
|
|
|
{
|
|
|
|
return _catgets(catd, set_id, msg_id, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|