diff options
Diffstat (limited to 'lib/libc/arch/m88k/string/strchr.co')
-rw-r--r-- | lib/libc/arch/m88k/string/strchr.co | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libc/arch/m88k/string/strchr.co b/lib/libc/arch/m88k/string/strchr.co deleted file mode 100644 index 341b2bff166..00000000000 --- a/lib/libc/arch/m88k/string/strchr.co +++ /dev/null @@ -1,15 +0,0 @@ -/* $OpenBSD: strchr.co,v 1.2 2000/03/01 17:31:21 todd Exp $ */ - -#if defined(LIBC_SCCS) && !defined(lint) -/*static char *sccsid = "from: @(#)strlen.c 5.5 (Berkeley) 1/26/91";*/ -static char *rcsid = "$OpenBSD: strchr.co,v 1.2 2000/03/01 17:31:21 todd Exp $"; -#endif /* LIBC_SCCS and not lint */ - -#include <string.h> - -char * -strchr(str, c) - const char *str; -{ - index(str, c); -} |