diff options
author | 2007-11-24 19:38:04 +0000 | |
---|---|---|
committer | 2007-11-24 19:38:04 +0000 | |
commit | 0bdfe359185d4a8563f031e1b6bd8f1484f2667b (patch) | |
tree | dabd43a56bfbdfd5b71b3c00db9d4862b7c6c66a /sys/lib/libkern/arch | |
parent | delete unused junk RCS ids (diff) | |
download | wireguard-openbsd-0bdfe359185d4a8563f031e1b6bd8f1484f2667b.tar.xz wireguard-openbsd-0bdfe359185d4a8563f031e1b6bd8f1484f2667b.zip |
junk SCCS
Diffstat (limited to 'sys/lib/libkern/arch')
-rw-r--r-- | sys/lib/libkern/arch/hppa/bcopy.m4 | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/hppa64/bcopy.m4 | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/bcmp.S | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/bzero.S | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/ffs.S | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/memcmp.S | 7 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/memset.S | 7 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/strcmp.S | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/strlen.S | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/strncmp.S | 8 | ||||
-rw-r--r-- | sys/lib/libkern/arch/m68k/strncpy.S | 8 |
11 files changed, 11 insertions, 75 deletions
diff --git a/sys/lib/libkern/arch/hppa/bcopy.m4 b/sys/lib/libkern/arch/hppa/bcopy.m4 index 8548813bce5..3dc4cb552a3 100644 --- a/sys/lib/libkern/arch/hppa/bcopy.m4 +++ b/sys/lib/libkern/arch/hppa/bcopy.m4 @@ -1,4 +1,4 @@ -define(_rcsid,``$OpenBSD: bcopy.m4,v 1.16 2007/05/14 19:54:21 martin Exp $'')dnl +define(_rcsid,``$OpenBSD: bcopy.m4,v 1.17 2007/11/24 19:42:00 deraadt Exp $'')dnl dnl dnl dnl This is the source file for bcopy.S, spcopy.S @@ -194,12 +194,6 @@ L($1, done) ' ifelse(NAME, `bcopy', ` -#if defined(LIBC_SCCS) - .text - .asciz "versionmacro" - .align 4 -#endif - LEAF_ENTRY(memcpy) ALTENTRY(memmove) copy arg0, t1 diff --git a/sys/lib/libkern/arch/hppa64/bcopy.m4 b/sys/lib/libkern/arch/hppa64/bcopy.m4 index c5813fe5d5a..12e8ca22a1d 100644 --- a/sys/lib/libkern/arch/hppa64/bcopy.m4 +++ b/sys/lib/libkern/arch/hppa64/bcopy.m4 @@ -1,4 +1,4 @@ -define(_rcsid,``$OpenBSD: bcopy.m4,v 1.3 2007/10/13 19:26:57 kettenis Exp $'')dnl +define(_rcsid,``$OpenBSD: bcopy.m4,v 1.4 2007/11/24 19:42:01 deraadt Exp $'')dnl dnl dnl dnl This is the source file for bcopy.S, spcopy.S @@ -183,12 +183,6 @@ L($1, done) ' ifelse(NAME, `bcopy', ` -#if defined(LIBC_SCCS) - .text - .asciz "versionmacro" - .align 4 -#endif - LEAF_ENTRY(memcpy) ALTENTRY(memmove) copy %arg0, %r22 diff --git a/sys/lib/libkern/arch/m68k/bcmp.S b/sys/lib/libkern/arch/m68k/bcmp.S index 4817edbc495..ddcbf5a46d2 100644 --- a/sys/lib/libkern/arch/m68k/bcmp.S +++ b/sys/lib/libkern/arch/m68k/bcmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: bcmp.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: bcmp.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)bcmp.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: bcmp.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - /* bcmp(s1, s2, n) */ #include "DEFS.h" diff --git a/sys/lib/libkern/arch/m68k/bzero.S b/sys/lib/libkern/arch/m68k/bzero.S index c51b630e454..8557998ba1d 100644 --- a/sys/lib/libkern/arch/m68k/bzero.S +++ b/sys/lib/libkern/arch/m68k/bzero.S @@ -1,4 +1,4 @@ -/* $OpenBSD: bzero.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: bzero.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)bzero.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: bzero.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - #include "DEFS.h" /* diff --git a/sys/lib/libkern/arch/m68k/ffs.S b/sys/lib/libkern/arch/m68k/ffs.S index cd2e536e71b..970db7568cc 100644 --- a/sys/lib/libkern/arch/m68k/ffs.S +++ b/sys/lib/libkern/arch/m68k/ffs.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: ffs.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)ffs.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: ffs.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - /* bit = ffs(value) */ #include "DEFS.h" diff --git a/sys/lib/libkern/arch/m68k/memcmp.S b/sys/lib/libkern/arch/m68k/memcmp.S index c11bc2b007f..cefea2a60fa 100644 --- a/sys/lib/libkern/arch/m68k/memcmp.S +++ b/sys/lib/libkern/arch/m68k/memcmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: memcmp.S,v 1.2 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: memcmp.S,v 1.3 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -35,11 +35,6 @@ #include "DEFS.h" -#if defined(LIBC_SCCS) - .text - .asciz "$OpenBSD: memcmp.S,v 1.2 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS */ - /* memcmp(s1, s2, n) */ /* diff --git a/sys/lib/libkern/arch/m68k/memset.S b/sys/lib/libkern/arch/m68k/memset.S index 47101c05452..e2ecdc5f7b1 100644 --- a/sys/lib/libkern/arch/m68k/memset.S +++ b/sys/lib/libkern/arch/m68k/memset.S @@ -1,4 +1,4 @@ -/* $OpenBSD: memset.S,v 1.2 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: memset.S,v 1.3 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -35,11 +35,6 @@ #include "DEFS.h" -#if defined(LIBC_SCCS) - .text - .asciz "$OpenBSD: memset.S,v 1.2 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS */ - /* * This is probably not the best we can do, but it is still much * faster than the C version in the portable gen directory. diff --git a/sys/lib/libkern/arch/m68k/strcmp.S b/sys/lib/libkern/arch/m68k/strcmp.S index ddb7dc847fa..8305c1c3430 100644 --- a/sys/lib/libkern/arch/m68k/strcmp.S +++ b/sys/lib/libkern/arch/m68k/strcmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: strcmp.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: strcmp.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)strcmp.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: strcmp.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - #include "DEFS.h" /* diff --git a/sys/lib/libkern/arch/m68k/strlen.S b/sys/lib/libkern/arch/m68k/strlen.S index 5d96d711675..a7f4a301464 100644 --- a/sys/lib/libkern/arch/m68k/strlen.S +++ b/sys/lib/libkern/arch/m68k/strlen.S @@ -1,4 +1,4 @@ -/* $OpenBSD: strlen.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: strlen.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)strlen.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: strlen.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - #include "DEFS.h" ENTRY(strlen) diff --git a/sys/lib/libkern/arch/m68k/strncmp.S b/sys/lib/libkern/arch/m68k/strncmp.S index eb11db25a65..724e0772986 100644 --- a/sys/lib/libkern/arch/m68k/strncmp.S +++ b/sys/lib/libkern/arch/m68k/strncmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: strncmp.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: strncmp.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)strncmp.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: strncmp.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - #include "DEFS.h" /* diff --git a/sys/lib/libkern/arch/m68k/strncpy.S b/sys/lib/libkern/arch/m68k/strncpy.S index cf17a4a1aea..93abe58adf7 100644 --- a/sys/lib/libkern/arch/m68k/strncpy.S +++ b/sys/lib/libkern/arch/m68k/strncpy.S @@ -1,4 +1,4 @@ -/* $OpenBSD: strncpy.S,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: strncpy.S,v 1.4 2007/11/24 19:38:04 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -33,12 +33,6 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)strncpy.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: strncpy.S,v 1.3 2003/06/02 23:28:08 millert Exp $" -#endif /* LIBC_SCCS and not lint */ - #include "DEFS.h" ENTRY(strncpy) |