diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
commit | 5864b79cd2852339f3025ee81769233071d60934 (patch) | |
tree | b468e5ee2b4272d5130141a79d342729b5f7e14e /lib/libc/string/wmemchr.c | |
parent | ac8f990bdebc788c11f8449ca0fd90b65c3b9048 (diff) | |
download | src-5864b79cd2852339f3025ee81769233071d60934.tar.gz src-5864b79cd2852339f3025ee81769233071d60934.zip |
Make the rcsid and FreeBSD IDs more sane in the wcs* and wmem* files.
Do the same for the non-wcs*/wmem* files while I'm here.
Notes
Notes:
svn path=/head/; revision=77117
Diffstat (limited to 'lib/libc/string/wmemchr.c')
-rw-r--r-- | lib/libc/string/wmemchr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/string/wmemchr.c b/lib/libc/string/wmemchr.c index 80add2aa723d..fa49a7485776 100644 --- a/lib/libc/string/wmemchr.c +++ b/lib/libc/string/wmemchr.c @@ -1,5 +1,3 @@ -/* $NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $ */ - /*- * Copyright (c)1999 Citrus Project, * All rights reserved. @@ -26,14 +24,16 @@ * SUCH DAMAGE. * * citrus Id: wmemchr.c,v 1.2 2000/12/20 14:08:31 itojun Exp - * - * $FreeBSD$ */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <assert.h> #include <wchar.h> |