diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
commit | d7615c200c61c89d6c4f97de1e3abf99bb759de9 (patch) | |
tree | 35d8d19aca072dba63d7062d615a555693a9142a /lib/libc/arch/m68k/sys | |
parent | 796010265f845625013cfa4bb2f73a26d43f30d2 (diff) |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/arch/m68k/sys')
-rw-r--r-- | lib/libc/arch/m68k/sys/Ovfork.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/brk.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/cerror.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/exect.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/fork.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/pipe.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/ptrace.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/reboot.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/sbrk.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/setlogin.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/sigpending.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/sigprocmask.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/sigreturn.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/sigsuspend.S | 7 | ||||
-rw-r--r-- | lib/libc/arch/m68k/sys/syscall.S | 7 |
15 files changed, 45 insertions, 60 deletions
diff --git a/lib/libc/arch/m68k/sys/Ovfork.S b/lib/libc/arch/m68k/sys/Ovfork.S index 2edc3f8de64..0893831c467 100644 --- a/lib/libc/arch/m68k/sys/Ovfork.S +++ b/lib/libc/arch/m68k/sys/Ovfork.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)Ovfork.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: Ovfork.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: Ovfork.S,v 1.2 1996/08/19 08:15:31 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/brk.S b/lib/libc/arch/m68k/sys/brk.S index 24a99555cc2..440ecc89d42 100644 --- a/lib/libc/arch/m68k/sys/brk.S +++ b/lib/libc/arch/m68k/sys/brk.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)brk.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: brk.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: brk.S,v 1.2 1996/08/19 08:15:33 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/cerror.S b/lib/libc/arch/m68k/sys/cerror.S index cafc425c5ab..c76ba33cc87 100644 --- a/lib/libc/arch/m68k/sys/cerror.S +++ b/lib/libc/arch/m68k/sys/cerror.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)cerror.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: cerror.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: cerror.S,v 1.2 1996/08/19 08:15:33 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/exect.S b/lib/libc/arch/m68k/sys/exect.S index 73f6a130136..273863a9178 100644 --- a/lib/libc/arch/m68k/sys/exect.S +++ b/lib/libc/arch/m68k/sys/exect.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)exect.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: exect.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: exect.S,v 1.2 1996/08/19 08:15:34 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" #include <machine/psl.h> diff --git a/lib/libc/arch/m68k/sys/fork.S b/lib/libc/arch/m68k/sys/fork.S index a13a8200269..6db8e1ec3a4 100644 --- a/lib/libc/arch/m68k/sys/fork.S +++ b/lib/libc/arch/m68k/sys/fork.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)fork.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: fork.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: fork.S,v 1.2 1996/08/19 08:15:36 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/pipe.S b/lib/libc/arch/m68k/sys/pipe.S index 06825cb1bde..51263b4ae78 100644 --- a/lib/libc/arch/m68k/sys/pipe.S +++ b/lib/libc/arch/m68k/sys/pipe.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)pipe.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: pipe.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: pipe.S,v 1.2 1996/08/19 08:15:37 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/ptrace.S b/lib/libc/arch/m68k/sys/ptrace.S index f260b69b99c..f248787692d 100644 --- a/lib/libc/arch/m68k/sys/ptrace.S +++ b/lib/libc/arch/m68k/sys/ptrace.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)ptrace.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: ptrace.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: ptrace.S,v 1.2 1996/08/19 08:15:38 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/reboot.S b/lib/libc/arch/m68k/sys/reboot.S index 7927e0792bb..6d144614d67 100644 --- a/lib/libc/arch/m68k/sys/reboot.S +++ b/lib/libc/arch/m68k/sys/reboot.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)reboot.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: reboot.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: reboot.S,v 1.2 1996/08/19 08:15:39 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/sbrk.S b/lib/libc/arch/m68k/sys/sbrk.S index 50dbf3d53ee..aeb2ca2ba36 100644 --- a/lib/libc/arch/m68k/sys/sbrk.S +++ b/lib/libc/arch/m68k/sys/sbrk.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)sbrk.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: sbrk.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: sbrk.S,v 1.2 1996/08/19 08:15:40 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/setlogin.S b/lib/libc/arch/m68k/sys/setlogin.S index c920588781a..1a76a850440 100644 --- a/lib/libc/arch/m68k/sys/setlogin.S +++ b/lib/libc/arch/m68k/sys/setlogin.S @@ -31,11 +31,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)setlogin.s 5.1 (Berkeley) 5/6/91"*/ - .asciz "$Id: setlogin.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: setlogin.S,v 1.2 1996/08/19 08:15:41 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/sigpending.S b/lib/libc/arch/m68k/sys/sigpending.S index edced04be19..38b11b20912 100644 --- a/lib/libc/arch/m68k/sys/sigpending.S +++ b/lib/libc/arch/m68k/sys/sigpending.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)sigpending.s 5.2 (Berkeley) 8/6/90"*/ - .asciz "$Id: sigpending.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: sigpending.S,v 1.2 1996/08/19 08:15:42 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/sigprocmask.S b/lib/libc/arch/m68k/sys/sigprocmask.S index 66c646e4739..2e4dbcb6538 100644 --- a/lib/libc/arch/m68k/sys/sigprocmask.S +++ b/lib/libc/arch/m68k/sys/sigprocmask.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)sigprocmask.s 5.2 (Berkeley) 6/6/90"*/ - .asciz "$Id: sigprocmask.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: sigprocmask.S,v 1.2 1996/08/19 08:15:43 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/sigreturn.S b/lib/libc/arch/m68k/sys/sigreturn.S index 0c8ad83bebc..6131aaee7e7 100644 --- a/lib/libc/arch/m68k/sys/sigreturn.S +++ b/lib/libc/arch/m68k/sys/sigreturn.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)sigreturn.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: sigreturn.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: sigreturn.S,v 1.2 1996/08/19 08:15:44 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/sigsuspend.S b/lib/libc/arch/m68k/sys/sigsuspend.S index ba51bfd0002..eb1273e219e 100644 --- a/lib/libc/arch/m68k/sys/sigsuspend.S +++ b/lib/libc/arch/m68k/sys/sigsuspend.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)sigsuspend.s 5.2 (Berkeley) 6/6/90"*/ - .asciz "$Id: sigsuspend.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: sigsuspend.S,v 1.2 1996/08/19 08:15:45 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" diff --git a/lib/libc/arch/m68k/sys/syscall.S b/lib/libc/arch/m68k/sys/syscall.S index 54d1f94bf10..ceef07359bf 100644 --- a/lib/libc/arch/m68k/sys/syscall.S +++ b/lib/libc/arch/m68k/sys/syscall.S @@ -35,11 +35,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) +#if defined(SYSLIBC_SCCS) .text - /*.asciz "from: @(#)syscall.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: syscall.S,v 1.1 1995/10/18 08:41:32 deraadt Exp $" -#endif /* LIBC_SCCS and not lint */ + .asciz "$OpenBSD: syscall.S,v 1.2 1996/08/19 08:15:46 tholo Exp $" +#endif /* SYSLIBC_SCCS */ #include "SYS.h" |