diff options
author | 2012-07-13 16:09:49 +0000 | |
---|---|---|
committer | 2012-07-13 16:09:49 +0000 | |
commit | 0008cc64d9da75254efcbffc71d3c74e5074e90f (patch) | |
tree | b4fde19c5e99c4695401bae2faacc08a4d0cb895 | |
parent | Replace a '512' with DEV_BSIZE. Calculate physmem size in blocks and (diff) | |
download | wireguard-openbsd-0008cc64d9da75254efcbffc71d3c74e5074e90f.tar.xz wireguard-openbsd-0008cc64d9da75254efcbffc71d3c74e5074e90f.zip |
bye bye SCCS
-rw-r--r-- | sys/lib/libsa/memcmp.c | 4 | ||||
-rw-r--r-- | sys/lib/libsa/strchr.c | 6 | ||||
-rw-r--r-- | sys/lib/libsa/strlen.c | 6 |
3 files changed, 2 insertions, 14 deletions
diff --git a/sys/lib/libsa/memcmp.c b/sys/lib/libsa/memcmp.c index d50993e56a4..be7e50ec907 100644 --- a/sys/lib/libsa/memcmp.c +++ b/sys/lib/libsa/memcmp.c @@ -30,10 +30,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: memcmp.c,v 1.6 2003/08/08 03:36:06 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "stand.h" /* diff --git a/sys/lib/libsa/strchr.c b/sys/lib/libsa/strchr.c index 28891c699c0..c8c6af4d0e3 100644 --- a/sys/lib/libsa/strchr.c +++ b/sys/lib/libsa/strchr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strchr.c,v 1.4 2003/08/11 06:23:09 deraadt Exp $ */ +/* $OpenBSD: strchr.c,v 1.5 2012/07/13 16:09:49 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strchr.c,v 1.4 2003/08/11 06:23:09 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - #ifndef _STANDALONE #include <string.h> #else diff --git a/sys/lib/libsa/strlen.c b/sys/lib/libsa/strlen.c index 3c37dd54d15..464d670ac13 100644 --- a/sys/lib/libsa/strlen.c +++ b/sys/lib/libsa/strlen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strlen.c,v 1.4 2003/08/11 06:23:09 deraadt Exp $ */ +/* $OpenBSD: strlen.c,v 1.5 2012/07/13 16:09:49 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -29,10 +29,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -/*static char *sccsid = "from: @(#)strlen.c 5.5 (Berkeley) 1/26/91";*/ -#endif /* LIBC_SCCS and not lint */ - #include "stand.h" size_t |