diff options
Diffstat (limited to 'lib/libc/nls/catgets.c')
-rw-r--r-- | lib/libc/nls/catgets.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/libc/nls/catgets.c b/lib/libc/nls/catgets.c deleted file mode 100644 index 037b6ff..0000000 --- a/lib/libc/nls/catgets.c +++ /dev/null @@ -1,28 +0,0 @@ -/* $FreeBSD$ */ - -/* - * 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, __const char *)); - -char * -catgets(catd, set_id, msg_id, s) - nl_catd catd; - int set_id; - int msg_id; - __const char *s; -{ - return _catgets(catd, set_id, msg_id, s); -} - -#endif |