summaryrefslogtreecommitdiff
path: root/usr.bin/patch
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-01-17 15:47:52 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-01-17 15:47:52 +0000
commit3c88ae792b55dd2c5889f62eee2734d7d47328f2 (patch)
tree17dc4f9af4b3219c30eb1830c4570890e773d978 /usr.bin/patch
parente3ff6ee1850c6cf71f8f19bfd5501ac5d234e1ea (diff)
rindex -> strrchr
Diffstat (limited to 'usr.bin/patch')
-rw-r--r--usr.bin/patch/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/patch/common.h b/usr.bin/patch/common.h
index adfe4ac4e42..198f83b8c40 100644
--- a/usr.bin/patch/common.h
+++ b/usr.bin/patch/common.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: common.h,v 1.5 1996/09/24 04:19:25 millert Exp $ */
+/* $OpenBSD: common.h,v 1.6 1997/01/17 15:47:51 millert Exp $ */
#define DEBUGGING
@@ -166,7 +166,7 @@ long atol();
char *getenv();
char *strcpy();
char *strcat();
-char *rindex();
+char *strrchr();
int mkstemp();
#if 0 /* This can cause a prototype conflict. */
#ifdef CHARSPRINTF