summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/rindex.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-07-24 04:16:01 +0000
committermillert <millert@openbsd.org>2002-07-24 04:16:01 +0000
commitcab33baaeac7f7231df425b2708f2bb3d227e994 (patch)
tree284d10a55038165298dbf738314c0280dfeaf676 /lib/libc/string/rindex.c
parentuse real clones of the libc functions (diff)
downloadwireguard-openbsd-cab33baaeac7f7231df425b2708f2bb3d227e994.tar.xz
wireguard-openbsd-cab33baaeac7f7231df425b2708f2bb3d227e994.zip
Convert to ANSI function headers and make 'ch' argument int, not char.
Noticed by deraadt@
Diffstat (limited to 'lib/libc/string/rindex.c')
-rw-r--r--lib/libc/string/rindex.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/string/rindex.c b/lib/libc/string/rindex.c
index f18553f6676..7c7c94ae815 100644
--- a/lib/libc/string/rindex.c
+++ b/lib/libc/string/rindex.c
@@ -32,18 +32,17 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: rindex.c,v 1.2 1996/08/19 08:34:08 tholo Exp $";
+static char *rcsid = "$OpenBSD: rindex.c,v 1.3 2002/07/24 04:16:01 millert Exp $";
#endif /* LIBC_SCCS and not lint */
#include <string.h>
char *
#ifdef STRRCHR
-strrchr(p, ch)
+strrchr(const char *p, int ch)
#else
-rindex(p, ch)
+rindex(const char *p, int ch)
#endif
- register const char *p, ch;
{
register char *save;