diff options
author | obrien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-05-24 08:47:42 +0000 |
commit | 8d900018e737354ad66ccfe561900b5454b50429 (patch) | |
tree | e5b1b1d859768d89d1f167183740f3329c71754d /lib/libc/string/wcslcpy.c | |
parent | a179ee09ab9ca2d9d1d09dc4752c53a13609f5e9 (diff) | |
download | FreeBSD-src-8d900018e737354ad66ccfe561900b5454b50429.zip FreeBSD-src-8d900018e737354ad66ccfe561900b5454b50429.tar.gz |
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.
Diffstat (limited to 'lib/libc/string/wcslcpy.c')
-rw-r--r-- | lib/libc/string/wcslcpy.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c index ff883e0..240feb4 100644 --- a/lib/libc/string/wcslcpy.c +++ b/lib/libc/string/wcslcpy.c @@ -1,6 +1,3 @@ -/* $NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $ */ -/* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ - /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> * All rights reserved. @@ -27,13 +24,17 @@ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <sys/types.h> #include <assert.h> |