Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libc / nls / _catgets.c
blobb7e28d4794c2f4d37b358e7a87ee1cfecff48ff4
1 /* $NetBSD: _catgets.c,v 1.7 2005/07/30 15:21:20 christos Exp $ */
3 /*
4 * Written by J.T. Conklin, 10/05/94
5 * Public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: _catgets.c,v 1.7 2005/07/30 15:21:20 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #if defined(__indr_reference)
14 __indr_reference(_catgets, catgets)
15 #else
17 #include <nl_types.h>
18 char *_catgets(nl_catd, int, int, const char *);
20 char *
21 catgets(nl_catd catd, int set_id, int msg_id, const char *s)
23 return _catgets(catd, set_id, msg_id, s);
26 #endif