diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-07-13 16:09:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-07-13 16:09:50 +0000 |
commit | 1aab69ba3e88475f85ea279872721295dd4511d7 (patch) | |
tree | b30722585f06187bbf52c1821b05f2a418e8f314 /sys/lib | |
parent | 819989efbe8ffde4cc6e3ab1afe11029ea586c6a (diff) |
bye bye SCCS
Diffstat (limited to 'sys/lib')
-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 |