xref: /netbsd-src/lib/libc/nls/catgets.c (revision 201fac6e3d8ac6a5503c4810b0378f73101d50c3)
1 /*
2  * Written by J.T. Conklin, 10/05/94
3  * Public domain.
4  */
5 
6 #include <sys/cdefs.h>
7 
8 #ifdef __weak_reference
9 __weak_reference(_catgets,catgets);
10 #else
11 
12 #include <nl_types.h>
13 
14 extern char * _catgets __P((nl_catd, int, int, char *));
15 
16 char *
17 catgets(catd, set_id, msg_id, s)
18 	nl_catd catd;
19 	int set_id;
20 	int msg_id;
21 	char *s;
22 {
23 	return _catgets(catd, set_id, msg_id, s);
24 }
25 
26 #endif
27