summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strcpy.c
diff options
context:
space:
mode:
authortholo <>1996-08-19 08:34:30 +0000
committertholo <>1996-08-19 08:34:30 +0000
commite05d77aaf17452bebe333901f1acfad893fa05a7 (patch)
tree38a123983182ecb1d85d870dc92d9e902a66e4e4 /src/lib/libc/string/strcpy.c
parent057dc3cd255a3e12f9cb92d21ec3f71c65cfd475 (diff)
downloadopenbsd-e05d77aaf17452bebe333901f1acfad893fa05a7.tar.gz
openbsd-e05d77aaf17452bebe333901f1acfad893fa05a7.tar.bz2
openbsd-e05d77aaf17452bebe333901f1acfad893fa05a7.zip
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'src/lib/libc/string/strcpy.c')
-rw-r--r--src/lib/libc/string/strcpy.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libc/string/strcpy.c b/src/lib/libc/string/strcpy.c
index 04bf0fa67f..76b063fc10 100644
--- a/src/lib/libc/string/strcpy.c
+++ b/src/lib/libc/string/strcpy.c
@@ -1,5 +1,3 @@
1/* $OpenBSD: strcpy.c,v 1.3 1996/05/01 12:57:49 deraadt Exp $ */
2
3/* 1/*
4 * Copyright (c) 1988 Regents of the University of California. 2 * Copyright (c) 1988 Regents of the University of California.
5 * All rights reserved. 3 * All rights reserved.
@@ -34,8 +32,7 @@
34 */ 32 */
35 33
36#if defined(LIBC_SCCS) && !defined(lint) 34#if defined(LIBC_SCCS) && !defined(lint)
37/*static char *sccsid = "from: @(#)strcpy.c 5.7 (Berkeley) 2/24/91";*/ 35static char *rcsid = "$OpenBSD: strcpy.c,v 1.4 1996/08/19 08:34:14 tholo Exp $";
38static char *rcsid = "$Id: strcpy.c,v 1.3 1996/05/01 12:57:49 deraadt Exp $";
39#endif /* LIBC_SCCS and not lint */ 36#endif /* LIBC_SCCS and not lint */
40 37
41#ifndef _KERNEL 38#ifndef _KERNEL