diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-03-23 21:13:29 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-03-23 21:13:29 +0000 |
commit | 8548c5020c59d84a2d2cd9f6d7b02f69319ae4b5 (patch) | |
tree | b3758b21c822625ee5a2683ac84bf073e03d502c /lib/libc/nls/_catopen.c | |
parent | ec252dd3c682b27243b1a26dc434b21eddadb366 (diff) |
ansify. ok deraadt@ millert@
Diffstat (limited to 'lib/libc/nls/_catopen.c')
-rw-r--r-- | lib/libc/nls/_catopen.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/nls/_catopen.c b/lib/libc/nls/_catopen.c index a9dc798ddce..c0f000bef0e 100644 --- a/lib/libc/nls/_catopen.c +++ b/lib/libc/nls/_catopen.c @@ -4,7 +4,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: _catopen.c,v 1.4 2002/02/16 21:27:23 millert Exp $"; +static char rcsid[] = "$OpenBSD: _catopen.c,v 1.5 2005/03/23 21:13:28 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> @@ -18,9 +18,7 @@ __indr_reference(_catopen,catopen); extern nl_catd _catopen(const char *, int); nl_catd -catopen(name, oflag) - const char *name; - int oflag; +catopen(const char *name, int oflag) { return _catopen(name, oflag); } |