diff options
Diffstat (limited to 'lib/libc/strrchr.c')
-rw-r--r-- | lib/libc/strrchr.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/libc/strrchr.c b/lib/libc/strrchr.c index 6afb8c1a..cd435ff3 100644 --- a/lib/libc/strrchr.c +++ b/lib/libc/strrchr.c @@ -29,12 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)rindex.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stddef.h> #include <string.h> @@ -53,5 +47,3 @@ strrchr(const char *p, int ch) } /* NOTREACHED */ } - -__weak_reference(strrchr, rindex); |