diff options
author | David Greenman <dg@FreeBSD.org> | 1994-08-02 07:55:43 +0000 |
---|---|---|
committer | David Greenman <dg@FreeBSD.org> | 1994-08-02 07:55:43 +0000 |
commit | 3c4dd3568f411b4f00f795929afb77ca972c2325 (patch) | |
tree | 9ea7ac3fc9f929d5b95f3f2de7f4dcac70ff517b | |
parent | 94e620434000f6b1f1f21bc1e1961b9480ea5ae2 (diff) |
Notes
680 files changed, 1199 insertions, 353 deletions
diff --git a/sys/Makefile b/sys/Makefile index 0e0ac3a82a6db..d9ccd53097e0e 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $Id$ SUBDIR= libkern diff --git a/sys/amd64/include/asmacros.h b/sys/amd64/include/asmacros.h index 4af0b97a8abf7..3b2fdf91149ed 100644 --- a/sys/amd64/include/asmacros.h +++ b/sys/amd64/include/asmacros.h @@ -1,3 +1,38 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + #define ALIGN_DATA .align 2 /* 4 byte alignment, zero filled */ #define ALIGN_TEXT .align 2,0x90 /* 4-byte alignment, nop filled */ #define SUPERALIGN_TEXT .align 4,0x90 /* 16-byte alignment (better for 486), nop filled */ diff --git a/sys/amd64/include/cpufunc.h b/sys/amd64/include/cpufunc.h index df871cbc0b6c9..02f044f7439fe 100644 --- a/sys/amd64/include/cpufunc.h +++ b/sys/amd64/include/cpufunc.h @@ -1,8 +1,41 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + /* * Functions to provide access to special i386 instructions. * XXX - bezillions more are defined in locore.s but are not declared anywhere. - * - * $Id: cpufunc.h,v 1.9 1994/01/31 23:48:23 davidg Exp $ */ #ifndef _MACHINE_CPUFUNC_H_ diff --git a/sys/amd64/include/exec.h b/sys/amd64/include/exec.h index f63ec49cc8c1f..2e8b31616f750 100644 --- a/sys/amd64/include/exec.h +++ b/sys/amd64/include/exec.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #ifndef _EXEC_H_ diff --git a/sys/amd64/include/profile.h b/sys/amd64/include/profile.h index f30efff826412..62dd697b45171 100644 --- a/sys/amd64/include/profile.h +++ b/sys/amd64/include/profile.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)profile.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #define _MCOUNT_DECL static inline void _mcount diff --git a/sys/amd64/include/ptrace.h b/sys/amd64/include/ptrace.h index bfcc55f7aab10..0892b83e2606c 100644 --- a/sys/amd64/include/ptrace.h +++ b/sys/amd64/include/ptrace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/amd64/include/reloc.h b/sys/amd64/include/reloc.h index 386241d908ab9..28b10c19820f3 100644 --- a/sys/amd64/include/reloc.h +++ b/sys/amd64/include/reloc.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)reloc.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* Relocation format. */ diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h index 16cbef22265e5..e688d8d6d346e 100644 --- a/sys/amd64/include/signal.h +++ b/sys/amd64/include/signal.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/amd64/include/sysarch.h b/sys/amd64/include/sysarch.h index 2649ba5fe2111..746cef1011fe4 100644 --- a/sys/amd64/include/sysarch.h +++ b/sys/amd64/include/sysarch.h @@ -1,7 +1,40 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + /* * Architecture specific syscalls (i386) - * - * $Id: sysarch.h,v 1.2 1993/10/16 14:39:35 rgrimes Exp $ */ #ifndef _MACHINE_SYSARCH_H_ #define _MACHINE_SYSARCH_H_ 1 diff --git a/sys/amd64/include/varargs.h b/sys/amd64/include/varargs.h index 1a913ec594704..fa6c9a7a95410 100644 --- a/sys/amd64/include/varargs.h +++ b/sys/amd64/include/varargs.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)varargs.h 8.2 (Berkeley) 3/22/94 + * $Id$ */ #ifndef _VARARGS_H_ diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh index 03fdc253b61a5..6ee1edaa3978e 100644 --- a/sys/conf/newvers.sh +++ b/sys/conf/newvers.sh @@ -32,6 +32,7 @@ # SUCH DAMAGE. # # @(#)newvers.sh 8.1 (Berkeley) 4/20/94 +# $Id$ if [ ! -r version ] then diff --git a/sys/conf/nfsswapvmunix.c b/sys/conf/nfsswapvmunix.c index f9812eb33147d..7ca9a1da2dffb 100644 --- a/sys/conf/nfsswapvmunix.c +++ b/sys/conf/nfsswapvmunix.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsswapvmunix.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/conf/param.c b/sys/conf/param.c index c871594221de1..2fdecf0670837 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)param.c 8.2 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/conf/systags.sh b/sys/conf/systags.sh index 90714d7697433..4cda02af41d82 100644 --- a/sys/conf/systags.sh +++ b/sys/conf/systags.sh @@ -38,7 +38,7 @@ # # First written May 16, 1992 by Van Jacobson, Lawrence Berkeley Laboratory. # -# from: $Header: systags.sh,v 1.7 92/07/12 08:18:21 torek Exp $ +# $Id$ rm -f tags tags.tmp tags.cfiles tags.sfiles tags.hfiles MACHINE=`machine` diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c index 26e3ebdfb3977..572cc1f00f914 100644 --- a/sys/dev/ed/if_ed.c +++ b/sys/dev/ed/if_ed.c @@ -13,10 +13,7 @@ * the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000, * and a variety of similar clones. * - */ - -/* - * $Id: if_ed.c,v 1.36 1994/04/10 20:06:26 davidg Exp $ + * $Id: if_ed.c,v 1.38 1994/05/25 08:59:02 rgrimes Exp $ */ #include "ed.h" diff --git a/sys/dev/ed/if_edreg.h b/sys/dev/ed/if_edreg.h index f75e261ef6600..f691a6e3f20e1 100644 --- a/sys/dev/ed/if_edreg.h +++ b/sys/dev/ed/if_edreg.h @@ -1,7 +1,16 @@ /* + * Copyright (C) 1993, David Greenman. This software may be used, modified, + * copied, distributed, and sold, in both source and binary form provided + * that the above copyright and these terms are retained. Under no + * circumstances is the author responsible for the proper functioning + * of this software, nor does the author assume any responsibility + * for damages incurred with its use. + * + * $Id: if_edreg.h,v 1.14 1994/04/10 20:06:28 davidg Exp $ + */ +/* * National Semiconductor DS8390 NIC register definitions * - * $Id: if_edreg.h,v 1.13 1994/02/02 14:05:58 davidg Exp $ * * Modification history * diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c index 466e93635ea2b..3653610371b4d 100644 --- a/sys/dev/mse/mse.c +++ b/sys/dev/mse/mse.c @@ -10,6 +10,8 @@ * University of Guelph makes no representations about the suitability of * this software for any purpose. It is provided "as is" * without express or implied warranty. + * + * $Id$ */ /* * Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and diff --git a/sys/dev/ppbus/lptio.h b/sys/dev/ppbus/lptio.h index 87af5bcc58750..7e3df42241824 100644 --- a/sys/dev/ppbus/lptio.h +++ b/sys/dev/ppbus/lptio.h @@ -11,6 +11,7 @@ * * Geoff Rehmet, Rhodes University, South Africa <csgr@cs.ru.ac.za> * + * $Id$ */ #ifndef _LPT_PRINTER_H_ diff --git a/sys/dev/speaker/speaker.h b/sys/dev/speaker/speaker.h index af80a282e28b9..f097e4807cf85 100644 --- a/sys/dev/speaker/speaker.h +++ b/sys/dev/speaker/speaker.h @@ -3,6 +3,8 @@ * * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su> + * + * $Id$ */ #ifndef _SPEAKER_H_ diff --git a/sys/fs/cd9660/cd9660_bmap.c b/sys/fs/cd9660/cd9660_bmap.c index 911eedfd06ae0..32439ce96abfc 100644 --- a/sys/fs/cd9660/cd9660_bmap.c +++ b/sys/fs/cd9660/cd9660_bmap.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_bmap.c 8.3 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/cd9660_lookup.c b/sys/fs/cd9660/cd9660_lookup.c index 36daffd6b2aa6..6540c44949c74 100644 --- a/sys/fs/cd9660/cd9660_lookup.c +++ b/sys/fs/cd9660/cd9660_lookup.c @@ -38,6 +38,7 @@ * from: @(#)ufs_lookup.c 7.33 (Berkeley) 5/19/91 * * @(#)cd9660_lookup.c 8.2 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c index f9641ffded7c2..43b1ffe4a827c 100644 --- a/sys/fs/cd9660/cd9660_node.c +++ b/sys/fs/cd9660/cd9660_node.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/cd9660_node.h b/sys/fs/cd9660/cd9660_node.h index 45de67f1a6be3..bc4ec4b497af6 100644 --- a/sys/fs/cd9660/cd9660_node.h +++ b/sys/fs/cd9660/cd9660_node.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.h 8.2 (Berkeley) 1/23/94 + * $Id$ */ /* diff --git a/sys/fs/cd9660/cd9660_rrip.c b/sys/fs/cd9660/cd9660_rrip.c index 0923fa014773a..6d73374c708c5 100644 --- a/sys/fs/cd9660/cd9660_rrip.c +++ b/sys/fs/cd9660/cd9660_rrip.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.c 8.2 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/cd9660_rrip.h b/sys/fs/cd9660/cd9660_rrip.h index b4017281f065f..8a140febb39bd 100644 --- a/sys/fs/cd9660/cd9660_rrip.h +++ b/sys/fs/cd9660/cd9660_rrip.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.h 8.1 (Berkeley) 1/21/94 + * $Id$ */ typedef struct { diff --git a/sys/fs/cd9660/cd9660_util.c b/sys/fs/cd9660/cd9660_util.c index 39c5fe491a47a..52a80d75ce42f 100644 --- a/sys/fs/cd9660/cd9660_util.c +++ b/sys/fs/cd9660/cd9660_util.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_util.c 8.1 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index bc48367a38c61..a4aeaaf5784af 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vfsops.c 8.3 (Berkeley) 1/31/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 7a2964bf22dbe..691a6ec59b5e1 100644 --- a/sys/fs/cd9660/cd9660_vnops.c +++ b/sys/fs/cd9660/cd9660_vnops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vnops.c 8.3 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/cd9660/iso.h b/sys/fs/cd9660/iso.h index e3567066e1cdf..a329afa3f9e09 100644 --- a/sys/fs/cd9660/iso.h +++ b/sys/fs/cd9660/iso.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)iso.h 8.2 (Berkeley) 1/23/94 + * $Id$ */ #define ISODCL(from, to) (to - from + 1) diff --git a/sys/fs/cd9660/iso_rrip.h b/sys/fs/cd9660/iso_rrip.h index 78e4a775201b9..031aaa37358bf 100644 --- a/sys/fs/cd9660/iso_rrip.h +++ b/sys/fs/cd9660/iso_rrip.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)iso_rrip.h 8.2 (Berkeley) 1/23/94 + * $Id$ */ diff --git a/sys/fs/deadfs/dead_vnops.c b/sys/fs/deadfs/dead_vnops.c index cac8775810c01..947b885faabd2 100644 --- a/sys/fs/deadfs/dead_vnops.c +++ b/sys/fs/deadfs/dead_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)dead_vnops.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/fifofs/fifo.h b/sys/fs/fifofs/fifo.h index e89186d8b8969..c57ba91393ad2 100644 --- a/sys/fs/fifofs/fifo.h +++ b/sys/fs/fifofs/fifo.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo.h 8.2 (Berkeley) 2/2/94 + * $Id$ */ #ifdef FIFO diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c index a1ba3f4abf933..b09c77b286ebd 100644 --- a/sys/fs/fifofs/fifo_vnops.c +++ b/sys/fs/fifofs/fifo_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo_vnops.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index 115ff6f464326..0fed55342f65d 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -35,11 +35,7 @@ * * @(#)null_vnops.c 8.1 (Berkeley) 6/10/93 * - * Ancestors: - * @(#)lofs_vnops.c 1.2 (Berkeley) 6/18/92 - * $Id: lofs_vnops.c,v 1.11 1992/05/30 10:05:43 jsp Exp jsp $ - * ...and... - * @(#)null_vnodeops.c 1.20 92/07/07 UCLA Ficus project + * $Id$ */ /* diff --git a/sys/fs/procfs/procfs.h b/sys/fs/procfs/procfs.h index f7b8fa3ef0ed6..7a1bbb81214b8 100644 --- a/sys/fs/procfs/procfs.h +++ b/sys/fs/procfs/procfs.h @@ -36,8 +36,7 @@ * * @(#)procfs.h 8.6 (Berkeley) 2/3/94 * - * From: - * $Id: procfs.h,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs.h,v 1.1.1.1 1994/05/24 10:05:07 rgrimes Exp $ */ /* diff --git a/sys/fs/procfs/procfs_ctl.c b/sys/fs/procfs/procfs_ctl.c index a42a03ce91cd5..44ee3fd4bb1d1 100644 --- a/sys/fs/procfs/procfs_ctl.c +++ b/sys/fs/procfs/procfs_ctl.c @@ -36,8 +36,7 @@ * * @(#)procfs_ctl.c 8.3 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_ctl.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_ctl.c,v 1.1.1.1 1994/05/24 10:05:10 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/fs/procfs/procfs_fpregs.c b/sys/fs/procfs/procfs_fpregs.c index 6d850a6a881b5..331a671279e26 100644 --- a/sys/fs/procfs/procfs_fpregs.c +++ b/sys/fs/procfs/procfs_fpregs.c @@ -36,8 +36,7 @@ * * @(#)procfs_fpregs.c 8.1 (Berkeley) 1/27/94 * - * From: - * $Id: procfs_regs.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_fpregs.c,v 1.1.1.1 1994/05/24 10:05:09 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/fs/procfs/procfs_mem.c b/sys/fs/procfs/procfs_mem.c index 039983da09c6e..f297df0bfeb0e 100644 --- a/sys/fs/procfs/procfs_mem.c +++ b/sys/fs/procfs/procfs_mem.c @@ -37,8 +37,7 @@ * * @(#)procfs_mem.c 8.4 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_mem.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_mem.c,v 1.1.1.1 1994/05/24 10:05:09 rgrimes Exp $ */ /* diff --git a/sys/fs/procfs/procfs_note.c b/sys/fs/procfs/procfs_note.c index bf2f160baa0df..a7699f29e123c 100644 --- a/sys/fs/procfs/procfs_note.c +++ b/sys/fs/procfs/procfs_note.c @@ -36,8 +36,7 @@ * * @(#)procfs_note.c 8.2 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_note.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_note.c,v 1.1.1.1 1994/05/24 10:05:09 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/fs/procfs/procfs_regs.c b/sys/fs/procfs/procfs_regs.c index fa95fef8f102e..8b0600a480d00 100644 --- a/sys/fs/procfs/procfs_regs.c +++ b/sys/fs/procfs/procfs_regs.c @@ -36,8 +36,7 @@ * * @(#)procfs_regs.c 8.3 (Berkeley) 1/27/94 * - * From: - * $Id: procfs_regs.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_regs.c,v 1.1.1.1 1994/05/24 10:05:08 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/fs/procfs/procfs_status.c b/sys/fs/procfs/procfs_status.c index d88aaabdfb057..1792dfde0063c 100644 --- a/sys/fs/procfs/procfs_status.c +++ b/sys/fs/procfs/procfs_status.c @@ -36,8 +36,7 @@ * * @(#)procfs_status.c 8.3 (Berkeley) 2/17/94 * - * From: - * $Id: procfs_status.c,v 3.1 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_status.c,v 1.1.1.1 1994/05/24 10:05:08 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/fs/procfs/procfs_subr.c b/sys/fs/procfs/procfs_subr.c index b371af19af0b0..b5ab705dd2649 100644 --- a/sys/fs/procfs/procfs_subr.c +++ b/sys/fs/procfs/procfs_subr.c @@ -36,8 +36,7 @@ * * @(#)procfs_subr.c 8.4 (Berkeley) 1/27/94 * - * From: - * $Id: procfs_subr.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_subr.c,v 1.1.1.1 1994/05/24 10:05:08 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index 67dc31f78b3bb..b5c9c7d9226a7 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -36,8 +36,7 @@ * * @(#)procfs_vfsops.c 8.4 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_vfsops.c,v 3.1 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_vfsops.c,v 1.2 1994/05/25 09:08:33 rgrimes Exp $ */ /* diff --git a/sys/fs/procfs/procfs_vnops.c b/sys/fs/procfs/procfs_vnops.c index b6c6e6fa572a6..e06d1316e98ed 100644 --- a/sys/fs/procfs/procfs_vnops.c +++ b/sys/fs/procfs/procfs_vnops.c @@ -36,8 +36,7 @@ * * @(#)procfs_vnops.c 8.6 (Berkeley) 2/7/94 * - * From: - * $Id: procfs_vnops.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_vnops.c,v 1.2 1994/05/25 09:08:39 rgrimes Exp $ */ /* diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index 55b5dd8d433bd..08907a2c272ca 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spec_vnops.c 8.6 (Berkeley) 4/9/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/umapfs/umap.h b/sys/fs/umapfs/umap.h index 9f4d1e7ace536..5903d30e3fa10 100644 --- a/sys/fs/umapfs/umap.h +++ b/sys/fs/umapfs/umap.h @@ -35,7 +35,7 @@ * * @(#)umap.h 8.3 (Berkeley) 1/21/94 * - * @(#)null_vnops.c 1.5 (Berkeley) 7/10/92 + * $Id$ */ #define MAPFILEENTRIES 64 diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c index 2480a85e440c4..67adb98ea9bf9 100644 --- a/sys/fs/umapfs/umap_vfsops.c +++ b/sys/fs/umapfs/umap_vfsops.c @@ -35,7 +35,7 @@ * * @(#)umap_vfsops.c 8.3 (Berkeley) 1/21/94 * - * @(#)null_vfsops.c 1.5 (Berkeley) 7/10/92 + * $Id$ */ /* diff --git a/sys/fs/umapfs/umap_vnops.c b/sys/fs/umapfs/umap_vnops.c index 0c1955f1ed33b..cda81532453d7 100644 --- a/sys/fs/umapfs/umap_vnops.c +++ b/sys/fs/umapfs/umap_vnops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)umap_vnops.c 8.3 (Berkeley) 1/5/94 + * $Id$ */ /* diff --git a/sys/fs/unionfs/union.h b/sys/fs/unionfs/union.h index 463218ac3ed29..b66e17caa8265 100644 --- a/sys/fs/unionfs/union.h +++ b/sys/fs/unionfs/union.h @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union.h 8.2 (Berkeley) 2/17/94 + * $Id$ */ struct union_args { diff --git a/sys/fs/unionfs/union_subr.c b/sys/fs/unionfs/union_subr.c index ea4f804a24db4..b73b63846c56d 100644 --- a/sys/fs/unionfs/union_subr.c +++ b/sys/fs/unionfs/union_subr.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union_subr.c 8.4 (Berkeley) 2/17/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/fs/unionfs/union_vfsops.c b/sys/fs/unionfs/union_vfsops.c index 42931d7c7bc1b..0dbcc0152c22b 100644 --- a/sys/fs/unionfs/union_vfsops.c +++ b/sys/fs/unionfs/union_vfsops.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vfsops.c 8.7 (Berkeley) 3/5/94 + * $Id$ */ /* diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c index 30f223350b215..bad3b1369da30 100644 --- a/sys/fs/unionfs/union_vnops.c +++ b/sys/fs/unionfs/union_vnops.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vnops.c 8.6 (Berkeley) 2/17/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/gnu/ext2fs/ext2_bmap.c b/sys/gnu/ext2fs/ext2_bmap.c index a424d31d7a854..6f38edc4d2113 100644 --- a/sys/gnu/ext2fs/ext2_bmap.c +++ b/sys/gnu/ext2fs/ext2_bmap.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_bmap.c 8.6 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/gnu/ext2fs/ext2_ihash.c b/sys/gnu/ext2fs/ext2_ihash.c index 4a37c907ef63e..53181c4a2caf5 100644 --- a/sys/gnu/ext2fs/ext2_ihash.c +++ b/sys/gnu/ext2fs/ext2_ihash.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.4 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/gnu/ext2fs/ext2_mount.h b/sys/gnu/ext2fs/ext2_mount.h index 237871fdaacaa..084abeb795d28 100644 --- a/sys/gnu/ext2fs/ext2_mount.h +++ b/sys/gnu/ext2fs/ext2_mount.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.2 (Berkeley) 1/12/94 + * $Id$ */ struct buf; diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h index df155967a7dfd..e37944321b470 100644 --- a/sys/gnu/ext2fs/inode.h +++ b/sys/gnu/ext2fs/inode.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #include <ufs/ufs/dinode.h> diff --git a/sys/gnu/fs/ext2fs/ext2_bmap.c b/sys/gnu/fs/ext2fs/ext2_bmap.c index a424d31d7a854..6f38edc4d2113 100644 --- a/sys/gnu/fs/ext2fs/ext2_bmap.c +++ b/sys/gnu/fs/ext2fs/ext2_bmap.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_bmap.c 8.6 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/gnu/fs/ext2fs/ext2_mount.h b/sys/gnu/fs/ext2fs/ext2_mount.h index 237871fdaacaa..084abeb795d28 100644 --- a/sys/gnu/fs/ext2fs/ext2_mount.h +++ b/sys/gnu/fs/ext2fs/ext2_mount.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.2 (Berkeley) 1/12/94 + * $Id$ */ struct buf; diff --git a/sys/gnu/fs/ext2fs/inode.h b/sys/gnu/fs/ext2fs/inode.h index df155967a7dfd..e37944321b470 100644 --- a/sys/gnu/fs/ext2fs/inode.h +++ b/sys/gnu/fs/ext2fs/inode.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #include <ufs/ufs/dinode.h> diff --git a/sys/i386/include/_limits.h b/sys/i386/include/_limits.h index e507313a046bd..3ae9518597dce 100644 --- a/sys/i386/include/_limits.h +++ b/sys/i386/include/_limits.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/i386/include/ansi.h b/sys/i386/include/ansi.h index 0ef060a3b5bbf..77ec887cd6aee 100644 --- a/sys/i386/include/ansi.h +++ b/sys/i386/include/ansi.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ansi.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _ANSI_H_ diff --git a/sys/i386/include/asmacros.h b/sys/i386/include/asmacros.h index 4af0b97a8abf7..3b2fdf91149ed 100644 --- a/sys/i386/include/asmacros.h +++ b/sys/i386/include/asmacros.h @@ -1,3 +1,38 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + #define ALIGN_DATA .align 2 /* 4 byte alignment, zero filled */ #define ALIGN_TEXT .align 2,0x90 /* 4-byte alignment, nop filled */ #define SUPERALIGN_TEXT .align 4,0x90 /* 16-byte alignment (better for 486), nop filled */ diff --git a/sys/i386/include/cons.h b/sys/i386/include/cons.h index f66277e1f04d1..faa17d12332c7 100644 --- a/sys/i386/include/cons.h +++ b/sys/i386/include/cons.h @@ -2,5 +2,7 @@ * Console support headers should be in <machine/cons.h> since MI software * needs to access these functions. In the mean time, just include the * header where it sits. + * + * $Id$ */ #include <i386/i386/cons.h> diff --git a/sys/i386/include/cpufunc.h b/sys/i386/include/cpufunc.h index df871cbc0b6c9..02f044f7439fe 100644 --- a/sys/i386/include/cpufunc.h +++ b/sys/i386/include/cpufunc.h @@ -1,8 +1,41 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + /* * Functions to provide access to special i386 instructions. * XXX - bezillions more are defined in locore.s but are not declared anywhere. - * - * $Id: cpufunc.h,v 1.9 1994/01/31 23:48:23 davidg Exp $ */ #ifndef _MACHINE_CPUFUNC_H_ diff --git a/sys/i386/include/exec.h b/sys/i386/include/exec.h index f63ec49cc8c1f..2e8b31616f750 100644 --- a/sys/i386/include/exec.h +++ b/sys/i386/include/exec.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #ifndef _EXEC_H_ diff --git a/sys/i386/include/ioctl_fd.h b/sys/i386/include/ioctl_fd.h index 2e3ac31047261..103f11ba99c71 100644 --- a/sys/i386/include/ioctl_fd.h +++ b/sys/i386/include/ioctl_fd.h @@ -22,6 +22,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef _IOCTL_FD_H diff --git a/sys/i386/include/ipl.h b/sys/i386/include/ipl.h index 248ca5666d674..773fa9c700c67 100644 --- a/sys/i386/include/ipl.h +++ b/sys/i386/include/ipl.h @@ -1,3 +1,38 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + #ifndef _ISA_IPL_H_ #define _ISA_IPL_H_ diff --git a/sys/i386/include/limits.h b/sys/i386/include/limits.h index e507313a046bd..3ae9518597dce 100644 --- a/sys/i386/include/limits.h +++ b/sys/i386/include/limits.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/i386/include/lpt.h b/sys/i386/include/lpt.h index 87af5bcc58750..7e3df42241824 100644 --- a/sys/i386/include/lpt.h +++ b/sys/i386/include/lpt.h @@ -11,6 +11,7 @@ * * Geoff Rehmet, Rhodes University, South Africa <csgr@cs.ru.ac.za> * + * $Id$ */ #ifndef _LPT_PRINTER_H_ diff --git a/sys/i386/include/profile.h b/sys/i386/include/profile.h index f30efff826412..62dd697b45171 100644 --- a/sys/i386/include/profile.h +++ b/sys/i386/include/profile.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)profile.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #define _MCOUNT_DECL static inline void _mcount diff --git a/sys/i386/include/ptrace.h b/sys/i386/include/ptrace.h index bfcc55f7aab10..0892b83e2606c 100644 --- a/sys/i386/include/ptrace.h +++ b/sys/i386/include/ptrace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/i386/include/reloc.h b/sys/i386/include/reloc.h index 386241d908ab9..28b10c19820f3 100644 --- a/sys/i386/include/reloc.h +++ b/sys/i386/include/reloc.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)reloc.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* Relocation format. */ diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 16cbef22265e5..e688d8d6d346e 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/i386/include/soundcard.h b/sys/i386/include/soundcard.h index ce28a144242db..3bac78da7e967 100644 --- a/sys/i386/include/soundcard.h +++ b/sys/i386/include/soundcard.h @@ -25,6 +25,7 @@ * SUCH DAMAGE. * * + * $Id$ */ /* diff --git a/sys/i386/include/speaker.h b/sys/i386/include/speaker.h index af80a282e28b9..f097e4807cf85 100644 --- a/sys/i386/include/speaker.h +++ b/sys/i386/include/speaker.h @@ -3,6 +3,8 @@ * * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su> + * + * $Id$ */ #ifndef _SPEAKER_H_ diff --git a/sys/i386/include/spl.h b/sys/i386/include/spl.h index c916df36da25a..739fc209e9e40 100644 --- a/sys/i386/include/spl.h +++ b/sys/i386/include/spl.h @@ -1,3 +1,38 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + #ifndef _MACHINE_IPL_H_ #define _MACHINE_IPL_H_ diff --git a/sys/i386/include/stdarg.h b/sys/i386/include/stdarg.h index 1110b667083b7..5880242723b88 100644 --- a/sys/i386/include/stdarg.h +++ b/sys/i386/include/stdarg.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)stdarg.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifndef _STDARG_H_ diff --git a/sys/i386/include/sysarch.h b/sys/i386/include/sysarch.h index 2649ba5fe2111..746cef1011fe4 100644 --- a/sys/i386/include/sysarch.h +++ b/sys/i386/include/sysarch.h @@ -1,7 +1,40 @@ +/*- + * Copyright (c) 1993 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $Id$ + */ + /* * Architecture specific syscalls (i386) - * - * $Id: sysarch.h,v 1.2 1993/10/16 14:39:35 rgrimes Exp $ */ #ifndef _MACHINE_SYSARCH_H_ #define _MACHINE_SYSARCH_H_ 1 diff --git a/sys/i386/include/types.h b/sys/i386/include/types.h index dcbb29c08fe98..78ce8d568ffcb 100644 --- a/sys/i386/include/types.h +++ b/sys/i386/include/types.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)types.h 8.3 (Berkeley) 1/5/94 + * $Id$ */ #ifndef _MACHTYPES_H_ diff --git a/sys/i386/include/ultrasound.h b/sys/i386/include/ultrasound.h index 40e2443e6f657..42d968850c141 100644 --- a/sys/i386/include/ultrasound.h +++ b/sys/i386/include/ultrasound.h @@ -24,6 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ /* diff --git a/sys/i386/include/varargs.h b/sys/i386/include/varargs.h index 1a913ec594704..fa6c9a7a95410 100644 --- a/sys/i386/include/varargs.h +++ b/sys/i386/include/varargs.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)varargs.h 8.2 (Berkeley) 3/22/94 + * $Id$ */ #ifndef _VARARGS_H_ diff --git a/sys/i386/isa/ft.c b/sys/i386/isa/ft.c index 5f4f62c33d035..bc5d7ccb6a10a 100644 --- a/sys/i386/isa/ft.c +++ b/sys/i386/isa/ft.c @@ -17,7 +17,7 @@ * POSSIBILITY OF SUCH DAMAGE. * * ft.c - QIC-40/80 floppy tape driver - * $Id: ft.c,v 1.4 1994/02/14 22:24:28 nate Exp $ + * $Id: ft.c,v 1.6 1994/05/25 08:58:47 rgrimes Exp $ * * * 01/26/94 v0.3b - Jim Babb @@ -51,6 +51,8 @@ * * 06/03/93 v0.1 Alpha release * Hopefully the last re-write. Many bugs fixed, many remain. + * + * $Id$ */ #include "ft.h" diff --git a/sys/i386/isa/ftreg.h b/sys/i386/isa/ftreg.h index 7b4ca6a27236f..c54249f3e8a7c 100644 --- a/sys/i386/isa/ftreg.h +++ b/sys/i386/isa/ftreg.h @@ -26,6 +26,8 @@ * * 06/03/93 v0.1 Alpha release * Initial revision. Many more things should be moved here. + * + * $Id$ */ /* QIC-117 command set. */ diff --git a/sys/i386/isa/if_ed.c b/sys/i386/isa/if_ed.c index 26e3ebdfb3977..572cc1f00f914 100644 --- a/sys/i386/isa/if_ed.c +++ b/sys/i386/isa/if_ed.c @@ -13,10 +13,7 @@ * the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000, * and a variety of similar clones. * - */ - -/* - * $Id: if_ed.c,v 1.36 1994/04/10 20:06:26 davidg Exp $ + * $Id: if_ed.c,v 1.38 1994/05/25 08:59:02 rgrimes Exp $ */ #include "ed.h" diff --git a/sys/i386/isa/if_edreg.h b/sys/i386/isa/if_edreg.h index f75e261ef6600..f691a6e3f20e1 100644 --- a/sys/i386/isa/if_edreg.h +++ b/sys/i386/isa/if_edreg.h @@ -1,7 +1,16 @@ /* + * Copyright (C) 1993, David Greenman. This software may be used, modified, + * copied, distributed, and sold, in both source and binary form provided + * that the above copyright and these terms are retained. Under no + * circumstances is the author responsible for the proper functioning + * of this software, nor does the author assume any responsibility + * for damages incurred with its use. + * + * $Id: if_edreg.h,v 1.14 1994/04/10 20:06:28 davidg Exp $ + */ +/* * National Semiconductor DS8390 NIC register definitions * - * $Id: if_edreg.h,v 1.13 1994/02/02 14:05:58 davidg Exp $ * * Modification history * diff --git a/sys/i386/isa/if_el.c b/sys/i386/isa/if_el.c index a9033ec0b2578..c16c5dfb77c7c 100644 --- a/sys/i386/isa/if_el.c +++ b/sys/i386/isa/if_el.c @@ -5,6 +5,8 @@ * portions thereof. * * Questions, comments, bug reports and fixes to kimmel@cs.umass.edu. + * + * $Id$ */ /* Except of course for the portions of code lifted from other FreeBSD * drivers (mainly elread, elget and el_ioctl) diff --git a/sys/i386/isa/if_elreg.h b/sys/i386/isa/if_elreg.h index 806d6ff68d1bf..4d7859dd71c6f 100644 --- a/sys/i386/isa/if_elreg.h +++ b/sys/i386/isa/if_elreg.h @@ -3,6 +3,8 @@ * the copyright notice and this permission notice appear in all copies * of the software, derivative works or modified versions, and any * portions thereof. + * + * $Id$ */ /* 3COM Etherlink 3C501 Register Definitions */ diff --git a/sys/i386/isa/if_is.c b/sys/i386/isa/if_is.c index fc0dcaee99082..8817a69411d05 100644 --- a/sys/i386/isa/if_is.c +++ b/sys/i386/isa/if_is.c @@ -11,7 +11,8 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * -*/ + * $Id$ + */ /* TODO diff --git a/sys/i386/isa/mse.c b/sys/i386/isa/mse.c index 466e93635ea2b..3653610371b4d 100644 --- a/sys/i386/isa/mse.c +++ b/sys/i386/isa/mse.c @@ -10,6 +10,8 @@ * University of Guelph makes no representations about the suitability of * this software for any purpose. It is provided "as is" * without express or implied warranty. + * + * $Id$ */ /* * Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and diff --git a/sys/i386/isa/sound/adlib_card.c b/sys/i386/isa/sound/adlib_card.c index 6365069384a55..36c2f5ea2c941 100644 --- a/sys/i386/isa/sound/adlib_card.c +++ b/sys/i386/isa/sound/adlib_card.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/audio.c b/sys/i386/isa/sound/audio.c index f27f9d5fa09fd..092a5e52a85c1 100644 --- a/sys/i386/isa/sound/audio.c +++ b/sys/i386/isa/sound/audio.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/dev_table.c b/sys/i386/isa/sound/dev_table.c index 7f7cae11d02e7..ccc32bc85a022 100644 --- a/sys/i386/isa/sound/dev_table.c +++ b/sys/i386/isa/sound/dev_table.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #define _DEV_TABLE_C_ diff --git a/sys/i386/isa/sound/dev_table.h b/sys/i386/isa/sound/dev_table.h index 4b656ba39c2b8..a814d5bfc0139 100644 --- a/sys/i386/isa/sound/dev_table.h +++ b/sys/i386/isa/sound/dev_table.h @@ -26,8 +26,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - -*/ + * $Id$ + */ #ifndef _DEV_TABLE_H_ #define _DEV_TABLE_H_ diff --git a/sys/i386/isa/sound/dmabuf.c b/sys/i386/isa/sound/dmabuf.c index 851a70a16b1b1..745271744a065 100644 --- a/sys/i386/isa/sound/dmabuf.c +++ b/sys/i386/isa/sound/dmabuf.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/finetune.h b/sys/i386/isa/sound/finetune.h index b86a0eb15a1f5..59e76fea943f5 100644 --- a/sys/i386/isa/sound/finetune.h +++ b/sys/i386/isa/sound/finetune.h @@ -23,6 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ unsigned short finetune_table[128] = diff --git a/sys/i386/isa/sound/gus_card.c b/sys/i386/isa/sound/gus_card.c index c7cfc0a7ab6c8..f3e8119df395b 100644 --- a/sys/i386/isa/sound/gus_card.c +++ b/sys/i386/isa/sound/gus_card.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/gus_hw.h b/sys/i386/isa/sound/gus_hw.h index f97a0b8670e3f..b3dc32f73a5c2 100644 --- a/sys/i386/isa/sound/gus_hw.h +++ b/sys/i386/isa/sound/gus_hw.h @@ -1,4 +1,6 @@ - +/* + * $Id$ + */ /* * I/O addresses */ diff --git a/sys/i386/isa/sound/gus_linearvol.h b/sys/i386/isa/sound/gus_linearvol.h index 7ad0c30d4fd98..6e41f092d75c8 100644 --- a/sys/i386/isa/sound/gus_linearvol.h +++ b/sys/i386/isa/sound/gus_linearvol.h @@ -1,3 +1,6 @@ +/* + * $Id$ + */ static unsigned short gus_linearvol[128] = { 0x0000, 0x08ff, 0x09ff, 0x0a80, 0x0aff, 0x0b40, 0x0b80, 0x0bc0, 0x0bff, 0x0c20, 0x0c40, 0x0c60, 0x0c80, 0x0ca0, 0x0cc0, 0x0ce0, diff --git a/sys/i386/isa/sound/gus_midi.c b/sys/i386/isa/sound/gus_midi.c index 935c5c90b3248..15931cc66aae6 100644 --- a/sys/i386/isa/sound/gus_midi.c +++ b/sys/i386/isa/sound/gus_midi.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/gus_vol.c b/sys/i386/isa/sound/gus_vol.c index 055a1170e9fb9..0ec141796f74d 100644 --- a/sys/i386/isa/sound/gus_vol.c +++ b/sys/i386/isa/sound/gus_vol.c @@ -2,6 +2,7 @@ * gus_vol.c - Compute volume for GUS. * * Greg Lee 1993. + * $Id$ */ #include "sound_config.h" #ifndef EXCLUDE_GUS diff --git a/sys/i386/isa/sound/gus_wave.c b/sys/i386/isa/sound/gus_wave.c index 9f6442e0fcff1..621286f9e1efc 100644 --- a/sys/i386/isa/sound/gus_wave.c +++ b/sys/i386/isa/sound/gus_wave.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/gustest/gmidi.h b/sys/i386/isa/sound/gustest/gmidi.h index ab951e7253246..106cfa23f607e 100644 --- a/sys/i386/isa/sound/gustest/gmidi.h +++ b/sys/i386/isa/sound/gustest/gmidi.h @@ -1,3 +1,6 @@ +/* + * $Id$ + */ char patch_names[][9] = { /* 0 */ "acpiano", diff --git a/sys/i386/isa/sound/gustest/gmod.c b/sys/i386/isa/sound/gustest/gmod.c index a1184a0bc79d6..298878370da15 100644 --- a/sys/i386/isa/sound/gustest/gmod.c +++ b/sys/i386/isa/sound/gustest/gmod.c @@ -6,6 +6,7 @@ * It's just a too I used while developing the driver. In * addition it can be used as an example on programming * the LInux Sound Driver with GUS. + * $Id$ */ #include <stdio.h> diff --git a/sys/i386/isa/sound/gustest/gpatinfo.c b/sys/i386/isa/sound/gustest/gpatinfo.c index 121020dfe2941..17dcb12bb4f61 100644 --- a/sys/i386/isa/sound/gustest/gpatinfo.c +++ b/sys/i386/isa/sound/gustest/gpatinfo.c @@ -6,6 +6,7 @@ * currently incompletely implemented prototype and * will change before final implementation. * + * $Id$ */ #include <stdio.h> diff --git a/sys/i386/isa/sound/gustest/gusload.c b/sys/i386/isa/sound/gustest/gusload.c index 1e04a7d70772c..1ed9a3b059601 100644 --- a/sys/i386/isa/sound/gustest/gusload.c +++ b/sys/i386/isa/sound/gustest/gusload.c @@ -1,4 +1,7 @@ /* + * $Id$ + */ +/* * patutil.c - A sample program which loads patches to the Gravis * Ultrasound * diff --git a/sys/i386/isa/sound/gustest/midithru.c b/sys/i386/isa/sound/gustest/midithru.c index 78f58c1d7eba2..c4fab7f2c6d17 100644 --- a/sys/i386/isa/sound/gustest/midithru.c +++ b/sys/i386/isa/sound/gustest/midithru.c @@ -1,3 +1,6 @@ +/* + * $Id$ + */ #include <stdio.h> #include <machine/soundcard.h> #include <unistd.h> diff --git a/sys/i386/isa/sound/gustest/pmtest.c b/sys/i386/isa/sound/gustest/pmtest.c index 05b5b9e9dc345..0520545e165ad 100644 --- a/sys/i386/isa/sound/gustest/pmtest.c +++ b/sys/i386/isa/sound/gustest/pmtest.c @@ -1,4 +1,7 @@ /* + * $Id$ + */ +/* * CAUTION! This program is just an incompletely implemented version * of the patch manager daemon for GUS. Using this program * with the driver version 1.99.9 will hang your system diff --git a/sys/i386/isa/sound/ics2101.c b/sys/i386/isa/sound/ics2101.c index 0e54c608de36b..c06fec0a4d4d8 100644 --- a/sys/i386/isa/sound/ics2101.c +++ b/sys/i386/isa/sound/ics2101.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/local.h b/sys/i386/isa/sound/local.h index 36092e37d9783..a5e7e54c941b9 100644 --- a/sys/i386/isa/sound/local.h +++ b/sys/i386/isa/sound/local.h @@ -1,4 +1,7 @@ /* for FreeBSD */ +/* + * $Id$ + */ #include "snd.h" #if NSND > 0 diff --git a/sys/i386/isa/sound/midi.c b/sys/i386/isa/sound/midi.c index 6ea51b061b9cf..a11a4df6dbb4e 100644 --- a/sys/i386/isa/sound/midi.c +++ b/sys/i386/isa/sound/midi.c @@ -22,6 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #define _MIDI_TABLE_C_ #include "sound_config.h" diff --git a/sys/i386/isa/sound/midibuf.c b/sys/i386/isa/sound/midibuf.c index 7dadb3f8fa742..399fdfd19c0a5 100644 --- a/sys/i386/isa/sound/midibuf.c +++ b/sys/i386/isa/sound/midibuf.c @@ -27,6 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/mpu401.c b/sys/i386/isa/sound/mpu401.c index 38ba486b142b3..0b1685d15fcce 100644 --- a/sys/i386/isa/sound/mpu401.c +++ b/sys/i386/isa/sound/mpu401.c @@ -27,6 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/opl3.c b/sys/i386/isa/sound/opl3.c index 6e3dccab8c43d..4278d1907ddec 100644 --- a/sys/i386/isa/sound/opl3.c +++ b/sys/i386/isa/sound/opl3.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ /* Major improvements to the FM handling 30AUG92 by Rob Hooft, */ diff --git a/sys/i386/isa/sound/opl3.h b/sys/i386/isa/sound/opl3.h index ea7901fc60a51..eeb8fef3334be 100644 --- a/sys/i386/isa/sound/opl3.h +++ b/sys/i386/isa/sound/opl3.h @@ -24,6 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ /* diff --git a/sys/i386/isa/sound/os.h b/sys/i386/isa/sound/os.h index fea169b708133..ec3c47f0d5d9e 100644 --- a/sys/i386/isa/sound/os.h +++ b/sys/i386/isa/sound/os.h @@ -36,6 +36,8 @@ * If you have to make changes to other than these two files, please contact me * before making the changes. It's possible that I have already made the * change. + * + * $Id$ */ /* diff --git a/sys/i386/isa/sound/pas.h b/sys/i386/isa/sound/pas.h index 9902e03e4bfeb..29f9ff6284162 100644 --- a/sys/i386/isa/sound/pas.h +++ b/sys/i386/isa/sound/pas.h @@ -1,3 +1,6 @@ +/* + * $Id$ + */ /* */ /* Port addresses and bit fields for the Media Vision Pro AudioSpectrum second generation sound cards. */ /* */ diff --git a/sys/i386/isa/sound/pas2_card.c b/sys/i386/isa/sound/pas2_card.c index cc99a9ef516c9..fc023a088f028 100644 --- a/sys/i386/isa/sound/pas2_card.c +++ b/sys/i386/isa/sound/pas2_card.c @@ -27,6 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/pas2_midi.c b/sys/i386/isa/sound/pas2_midi.c index 4a07b0b59bf85..e502db9d4a027 100644 --- a/sys/i386/isa/sound/pas2_midi.c +++ b/sys/i386/isa/sound/pas2_midi.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/pas2_mixer.c b/sys/i386/isa/sound/pas2_mixer.c index b3868773d64c0..8d83df4415852 100644 --- a/sys/i386/isa/sound/pas2_mixer.c +++ b/sys/i386/isa/sound/pas2_mixer.c @@ -27,6 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/pas2_pcm.c b/sys/i386/isa/sound/pas2_pcm.c index ec571c5e8085a..1eef59b35004c 100644 --- a/sys/i386/isa/sound/pas2_pcm.c +++ b/sys/i386/isa/sound/pas2_pcm.c @@ -26,6 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/patmgr.c b/sys/i386/isa/sound/patmgr.c index 042d42d4067cd..f5754370e3ccb 100644 --- a/sys/i386/isa/sound/patmgr.c +++ b/sys/i386/isa/sound/patmgr.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #define PATMGR_C diff --git a/sys/i386/isa/sound/pro_midi.c b/sys/i386/isa/sound/pro_midi.c index b9ffa26a9ab2b..93c1937309d05 100644 --- a/sys/i386/isa/sound/pro_midi.c +++ b/sys/i386/isa/sound/pro_midi.c @@ -22,6 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #define ALL_EXTERNAL_TO_ME #include "sound_config.h" diff --git a/sys/i386/isa/sound/sb.h b/sys/i386/isa/sound/sb.h index bb8ae12d7e608..c701bc183ac51 100644 --- a/sys/i386/isa/sound/sb.h +++ b/sys/i386/isa/sound/sb.h @@ -1,3 +1,6 @@ +/* + * $Id$ + */ #define DSP_RESET (sbc_base + 0x6) #define DSP_READ (sbc_base + 0xA) #define DSP_WRITE (sbc_base + 0xC) diff --git a/sys/i386/isa/sound/sb16_dsp.c b/sys/i386/isa/sound/sb16_dsp.c index b545f8cac222f..20c597d748460 100644 --- a/sys/i386/isa/sound/sb16_dsp.c +++ b/sys/i386/isa/sound/sb16_dsp.c @@ -27,6 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #define DEB(x) diff --git a/sys/i386/isa/sound/sb16_midi.c b/sys/i386/isa/sound/sb16_midi.c index 39808c80fe0d0..d15fe17456a56 100644 --- a/sys/i386/isa/sound/sb16_midi.c +++ b/sys/i386/isa/sound/sb16_midi.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/sb_card.c b/sys/i386/isa/sound/sb_card.c index f7588e1ca1729..e56ebd3f3f731 100644 --- a/sys/i386/isa/sound/sb_card.c +++ b/sys/i386/isa/sound/sb_card.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/sb_dsp.c b/sys/i386/isa/sound/sb_dsp.c index 17fb4b70dc6af..9e296c66f72a8 100644 --- a/sys/i386/isa/sound/sb_dsp.c +++ b/sys/i386/isa/sound/sb_dsp.c @@ -29,6 +29,7 @@ * Hunyue Yau Jan 6 1994 * Added code to support Sound Galaxy NX Pro * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/sb_midi.c b/sys/i386/isa/sound/sb_midi.c index fed19aba3a081..dc6bba071086f 100644 --- a/sys/i386/isa/sound/sb_midi.c +++ b/sys/i386/isa/sound/sb_midi.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/sb_mixer.c b/sys/i386/isa/sound/sb_mixer.c index 39b97caf8cd73..508dc67378d73 100644 --- a/sys/i386/isa/sound/sb_mixer.c +++ b/sys/i386/isa/sound/sb_mixer.c @@ -30,6 +30,7 @@ * Hunyue Yau Jan 6 1994 * Added code to support the Sound Galaxy NX Pro mixer. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/sb_mixer.h b/sys/i386/isa/sound/sb_mixer.h index 4caf7730226fa..89b66d0110dc1 100644 --- a/sys/i386/isa/sound/sb_mixer.h +++ b/sys/i386/isa/sound/sb_mixer.h @@ -29,6 +29,7 @@ * Hunyue Yau Jan 6 1994 * Added defines for the Sound Galaxy NX Pro mixer. * + * $Id$ */ #define SBPRO_RECORDING_DEVICES (SOUND_MASK_LINE | SOUND_MASK_MIC | SOUND_MASK_CD) diff --git a/sys/i386/isa/sound/sequencer.c b/sys/i386/isa/sound/sequencer.c index 98854736a32da..57480122520cc 100644 --- a/sys/i386/isa/sound/sequencer.c +++ b/sys/i386/isa/sound/sequencer.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #define SEQUENCER_C diff --git a/sys/i386/isa/sound/sound_calls.h b/sys/i386/isa/sound/sound_calls.h index abc82001b7769..789d1d08f7a0b 100644 --- a/sys/i386/isa/sound/sound_calls.h +++ b/sys/i386/isa/sound/sound_calls.h @@ -1,4 +1,7 @@ /* + * $Id$ + */ +/* * DMA buffer calls */ diff --git a/sys/i386/isa/sound/sound_config.h b/sys/i386/isa/sound/sound_config.h index 0d30c12aadc4a..e692eae0a35fa 100644 --- a/sys/i386/isa/sound/sound_config.h +++ b/sys/i386/isa/sound/sound_config.h @@ -26,6 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "local.h" diff --git a/sys/i386/isa/sound/sound_switch.c b/sys/i386/isa/sound/sound_switch.c index 68c757586083e..a271a6af9114b 100644 --- a/sys/i386/isa/sound/sound_switch.c +++ b/sys/i386/isa/sound/sound_switch.c @@ -25,6 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/soundcard.c b/sys/i386/isa/sound/soundcard.c index 9691e4f07bec8..bc44b00301904 100644 --- a/sys/i386/isa/sound/soundcard.c +++ b/sys/i386/isa/sound/soundcard.c @@ -26,6 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $Id$ */ #include "sound_config.h" diff --git a/sys/i386/isa/sound/tuning.h b/sys/i386/isa/sound/tuning.h index 858e1fe6c618c..23086af15c916 100644 --- a/sys/i386/isa/sound/tuning.h +++ b/sys/i386/isa/sound/tuning.h @@ -1,3 +1,6 @@ +/* + * $Id$ + */ #ifdef SEQUENCER_C unsigned short semitone_tuning[24] = diff --git a/sys/i386/isa/sound/ulaw.h b/sys/i386/isa/sound/ulaw.h index be9f92d9984a6..9984e363c4a15 100644 --- a/sys/i386/isa/sound/ulaw.h +++ b/sys/i386/isa/sound/ulaw.h @@ -1,3 +1,6 @@ +/* + * $Id$ + */ static unsigned char ulaw_dsp[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, diff --git a/sys/isofs/cd9660/cd9660_bmap.c b/sys/isofs/cd9660/cd9660_bmap.c index 911eedfd06ae0..32439ce96abfc 100644 --- a/sys/isofs/cd9660/cd9660_bmap.c +++ b/sys/isofs/cd9660/cd9660_bmap.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_bmap.c 8.3 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/cd9660_lookup.c b/sys/isofs/cd9660/cd9660_lookup.c index 36daffd6b2aa6..6540c44949c74 100644 --- a/sys/isofs/cd9660/cd9660_lookup.c +++ b/sys/isofs/cd9660/cd9660_lookup.c @@ -38,6 +38,7 @@ * from: @(#)ufs_lookup.c 7.33 (Berkeley) 5/19/91 * * @(#)cd9660_lookup.c 8.2 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index f9641ffded7c2..43b1ffe4a827c 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/cd9660/cd9660_node.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/cd9660_node.h b/sys/isofs/cd9660/cd9660_node.h index 45de67f1a6be3..bc4ec4b497af6 100644 --- a/sys/isofs/cd9660/cd9660_node.h +++ b/sys/isofs/cd9660/cd9660_node.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.h 8.2 (Berkeley) 1/23/94 + * $Id$ */ /* diff --git a/sys/isofs/cd9660/cd9660_rrip.c b/sys/isofs/cd9660/cd9660_rrip.c index 0923fa014773a..6d73374c708c5 100644 --- a/sys/isofs/cd9660/cd9660_rrip.c +++ b/sys/isofs/cd9660/cd9660_rrip.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.c 8.2 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/cd9660_rrip.h b/sys/isofs/cd9660/cd9660_rrip.h index b4017281f065f..8a140febb39bd 100644 --- a/sys/isofs/cd9660/cd9660_rrip.h +++ b/sys/isofs/cd9660/cd9660_rrip.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.h 8.1 (Berkeley) 1/21/94 + * $Id$ */ typedef struct { diff --git a/sys/isofs/cd9660/cd9660_util.c b/sys/isofs/cd9660/cd9660_util.c index 39c5fe491a47a..52a80d75ce42f 100644 --- a/sys/isofs/cd9660/cd9660_util.c +++ b/sys/isofs/cd9660/cd9660_util.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_util.c 8.1 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index bc48367a38c61..a4aeaaf5784af 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vfsops.c 8.3 (Berkeley) 1/31/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/cd9660_vnops.c b/sys/isofs/cd9660/cd9660_vnops.c index 7a2964bf22dbe..691a6ec59b5e1 100644 --- a/sys/isofs/cd9660/cd9660_vnops.c +++ b/sys/isofs/cd9660/cd9660_vnops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vnops.c 8.3 (Berkeley) 1/23/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/isofs/cd9660/iso.h b/sys/isofs/cd9660/iso.h index e3567066e1cdf..a329afa3f9e09 100644 --- a/sys/isofs/cd9660/iso.h +++ b/sys/isofs/cd9660/iso.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)iso.h 8.2 (Berkeley) 1/23/94 + * $Id$ */ #define ISODCL(from, to) (to - from + 1) diff --git a/sys/isofs/cd9660/iso_rrip.h b/sys/isofs/cd9660/iso_rrip.h index 78e4a775201b9..031aaa37358bf 100644 --- a/sys/isofs/cd9660/iso_rrip.h +++ b/sys/isofs/cd9660/iso_rrip.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)iso_rrip.h 8.2 (Berkeley) 1/23/94 + * $Id$ */ diff --git a/sys/kern/Make.tags.inc b/sys/kern/Make.tags.inc index 1563c4165f1e7..a09e4848a08d6 100644 --- a/sys/kern/Make.tags.inc +++ b/sys/kern/Make.tags.inc @@ -1,4 +1,5 @@ # @(#)Make.tags.inc 8.1 (Berkeley) 6/11/93 +# $Id$ # Common files for "make tags". # Included by the Makefile for each architecture. diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index ea604ab421396..7e8c70bf559a6 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)init_main.c 8.9 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_acct.c b/sys/kern/kern_acct.c index 3cbde510f84b2..456eb33c5a6a1 100644 --- a/sys/kern/kern_acct.c +++ b/sys/kern/kern_acct.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * from: @(#)kern_acct.c 8.1 (Berkeley) 6/14/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index 4017e966ee69b..c963fdae4febc 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index 9258e811f1beb..df984d15be0e0 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c index 7db9830abb673..0a0ac8ff5074f 100644 --- a/sys/kern/kern_exit.c +++ b/sys/kern/kern_exit.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_exit.c 8.7 (Berkeley) 2/12/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index c285017013f4b..a415fc0c1c6b5 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_fork.c 8.6 (Berkeley) 4/8/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_ktrace.c b/sys/kern/kern_ktrace.c index 4b6f721c3a262..711f1b65f0f87 100644 --- a/sys/kern/kern_ktrace.c +++ b/sys/kern/kern_ktrace.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_ktrace.c 8.2 (Berkeley) 9/23/93 + * $Id$ */ #ifdef KTRACE diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index 3da06d9c04a85..fecf154e7b193 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_malloc.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c index 9e0405fc6abb9..21a3c3844e696 100644 --- a/sys/kern/kern_physio.c +++ b/sys/kern/kern_physio.c @@ -15,6 +15,8 @@ * John S. Dyson. * 4. Modifications may be freely made to this file if the above conditions * are met. + * + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c index 63a22c966c5a3..11b3816253899 100644 --- a/sys/kern/kern_proc.c +++ b/sys/kern/kern_proc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_proc.c 8.4 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_prot.c b/sys/kern/kern_prot.c index 1e205eecd5ae5..50458ad883959 100644 --- a/sys/kern/kern_prot.c +++ b/sys/kern/kern_prot.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_prot.c 8.6 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c index e38471a41e5b6..a6b11c0431e6f 100644 --- a/sys/kern/kern_resource.c +++ b/sys/kern/kern_resource.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_resource.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index f778c364d6700..c076dcd67cfc0 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_sig.c 8.7 (Berkeley) 4/18/94 + * $Id$ */ #define SIGPROP /* include signal properties table */ diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c index 8eb4dee65a7ce..8df444c58d43f 100644 --- a/sys/kern/kern_subr.c +++ b/sys/kern/kern_subr.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_subr.c 8.3 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index a299dbaf7aaa9..f9d43a6ca3ce0 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_synch.c 8.6 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 7e5f196dfb09a..71c8d56d2da56 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 + * $Id$ */ /* diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c index 4017e966ee69b..c963fdae4febc 100644 --- a/sys/kern/kern_tc.c +++ b/sys/kern/kern_tc.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_time.c b/sys/kern/kern_time.c index 2e86376de4680..d03098341ffe5 100644 --- a/sys/kern/kern_time.c +++ b/sys/kern/kern_time.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_time.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index 4017e966ee69b..c963fdae4febc 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/kern_xxx.c b/sys/kern/kern_xxx.c index 656430d5b1046..5f7ba517f9793 100644 --- a/sys/kern/kern_xxx.c +++ b/sys/kern/kern_xxx.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_xxx.c 8.2 (Berkeley) 11/14/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index 0ddea0c28fa46..bafd07eb6e4c8 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -1,5 +1,6 @@ #! /bin/sh - # @(#)makesyscalls.sh 8.1 (Berkeley) 6/10/93 +# $Id$ set -e diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c index af17988c93595..f48ce99f0a37c 100644 --- a/sys/kern/subr_autoconf.c +++ b/sys/kern/subr_autoconf.c @@ -41,7 +41,7 @@ * * @(#)subr_autoconf.c 8.1 (Berkeley) 6/10/93 * - * from: $Header: subr_autoconf.c,v 1.12 93/02/01 19:31:48 torek Exp $ (LBL) + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index d0b14966d25ff..1b6886c66302f 100644 --- a/sys/kern/subr_clist.c +++ b/sys/kern/subr_clist.c @@ -6,6 +6,11 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * + * $Id$ + */ + +/* + * clist support routines */ #include <sys/param.h> diff --git a/sys/kern/subr_disklabel.c b/sys/kern/subr_disklabel.c index cc0f28d37f153..0c787f7e866ca 100644 --- a/sys/kern/subr_disklabel.c +++ b/sys/kern/subr_disklabel.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_disksubr.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/subr_log.c b/sys/kern/subr_log.c index 92e4543f38dbf..751b7417581b6 100644 --- a/sys/kern/subr_log.c +++ b/sys/kern/subr_log.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_log.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/kern/subr_param.c b/sys/kern/subr_param.c index c871594221de1..2fdecf0670837 100644 --- a/sys/kern/subr_param.c +++ b/sys/kern/subr_param.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)param.c 8.2 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index 5ef4925856f2b..fb2866c5c7042 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c index efe56b098d231..a8425e95fba1a 100644 --- a/sys/kern/subr_prof.c +++ b/sys/kern/subr_prof.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_prof.c 8.3 (Berkeley) 9/23/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/subr_rmap.c b/sys/kern/subr_rmap.c index 2f31173321dde..a43899e8b19da 100644 --- a/sys/kern/subr_rmap.c +++ b/sys/kern/subr_rmap.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * from: @(#)subr_rmap.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/subr_xxx.c b/sys/kern/subr_xxx.c index 3304d57da6e84..e866b8aaf9089 100644 --- a/sys/kern/subr_xxx.c +++ b/sys/kern/subr_xxx.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)subr_xxx.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/kern/sys_generic.c b/sys/kern/sys_generic.c index 919c8664c5d96..af58a5cc1f9cd 100644 --- a/sys/kern/sys_generic.c +++ b/sys/kern/sys_generic.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)sys_generic.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 527371df71bb6..cb05cb76b2174 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * from: @(#)sys_process.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/sys_socket.c b/sys/kern/sys_socket.c index 63f529841170e..d909cf30c6e58 100644 --- a/sys/kern/sys_socket.c +++ b/sys/kern/sys_socket.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)sys_socket.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 4ba7df2ba2f06..0b4574b33043b 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,6 @@ - @(#)syscalls.master 8.2 (Berkeley) 1/13/94 + $Id$ +; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 +; ; System call name/number master file. ; Processed to created init_sysent.c, syscalls.c and syscall.h. diff --git a/sys/kern/tty.c b/sys/kern/tty.c index fd3c051a50c11..b207bc3210bdb 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.c 8.8 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/tty_compat.c b/sys/kern/tty_compat.c index 7047230844d92..4ce472b7d3cb7 100644 --- a/sys/kern/tty_compat.c +++ b/sys/kern/tty_compat.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_compat.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/kern/tty_conf.c b/sys/kern/tty_conf.c index f517a37f0ed03..fe5f3eca8a49d 100644 --- a/sys/kern/tty_conf.c +++ b/sys/kern/tty_conf.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)tty_conf.c 8.4 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index 50f0581f76129..d6d487045db1e 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_pty.c 8.2 (Berkeley) 9/23/93 + * $Id$ */ /* diff --git a/sys/kern/tty_subr.c b/sys/kern/tty_subr.c index d0b14966d25ff..1b6886c66302f 100644 --- a/sys/kern/tty_subr.c +++ b/sys/kern/tty_subr.c @@ -6,6 +6,11 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * + * $Id$ + */ + +/* + * clist support routines */ #include <sys/param.h> diff --git a/sys/kern/tty_tb.c b/sys/kern/tty_tb.c index 242301a52e89c..8f4c84c66383c 100644 --- a/sys/kern/tty_tb.c +++ b/sys/kern/tty_tb.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_tb.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include "tb.h" diff --git a/sys/kern/tty_tty.c b/sys/kern/tty_tty.c index 6baba9932400a..b710d5b2d47b6 100644 --- a/sys/kern/tty_tty.c +++ b/sys/kern/tty_tty.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_tty.c 8.2 (Berkeley) 9/23/93 + * $Id$ */ /* diff --git a/sys/kern/uipc_domain.c b/sys/kern/uipc_domain.c index db082c73660eb..e1f76dee1e8c8 100644 --- a/sys/kern/uipc_domain.c +++ b/sys/kern/uipc_domain.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_domain.c 8.2 (Berkeley) 10/18/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index 5569bea97dbfb..a75ba75c9789a 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_mbuf.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_proto.c b/sys/kern/uipc_proto.c index da9828aa2679a..b484737e54594 100644 --- a/sys/kern/uipc_proto.c +++ b/sys/kern/uipc_proto.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_proto.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_sockbuf.c b/sys/kern/uipc_sockbuf.c index dc153bd0cae39..6f16e2300e46b 100644 --- a/sys/kern/uipc_sockbuf.c +++ b/sys/kern/uipc_sockbuf.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_socket2.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c index 510556c62c859..b50b26333f6e8 100644 --- a/sys/kern/uipc_socket.c +++ b/sys/kern/uipc_socket.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_socket.c 8.3 (Berkeley) 4/15/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c index dc153bd0cae39..6f16e2300e46b 100644 --- a/sys/kern/uipc_socket2.c +++ b/sys/kern/uipc_socket2.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_socket2.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_syscalls.c b/sys/kern/uipc_syscalls.c index 5113f78f4ee7f..1674039b77edf 100644 --- a/sys/kern/uipc_syscalls.c +++ b/sys/kern/uipc_syscalls.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_syscalls.c 8.4 (Berkeley) 2/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index b61e9f4a2372c..a1ec080f53b50 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index b3ab4caf2be34..b3e3c07f17934 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -15,6 +15,8 @@ * John S. Dyson. * 4. Modifications may be freely made to this file if the above conditions * are met. + * + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index 2ddf644c98d91..1bc4872ae53f8 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vfs_cache.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index 40fa3be52f938..46eb0adbea137 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 2fe39eb674b08..70acd9b8b5ef2 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index 9535b8a7231e6..a1a24f8ea2ddd 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.13 (Berkeley) 4/18/94 + * $Id$ */ /* diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c index f5c3d78353142..7c35066ac4bde 100644 --- a/sys/kern/vfs_extattr.c +++ b/sys/kern/vfs_extattr.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 3ab520d652e81..6b11461ec8e3c 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_init.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ diff --git a/sys/kern/vfs_lookup.c b/sys/kern/vfs_lookup.c index 0fa5aa19b78d2..bd51adcc9bf95 100644 --- a/sys/kern/vfs_lookup.c +++ b/sys/kern/vfs_lookup.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_lookup.c 8.4 (Berkeley) 2/16/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 2fe39eb674b08..70acd9b8b5ef2 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 9535b8a7231e6..a1a24f8ea2ddd 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.13 (Berkeley) 4/18/94 + * $Id$ */ /* diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index f5c3d78353142..7c35066ac4bde 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c index d63a39c158bcc..2b6429912f27c 100644 --- a/sys/kern/vfs_vnops.c +++ b/sys/kern/vfs_vnops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/kern/vnode_if.pl b/sys/kern/vnode_if.pl index e190fa04836df..339e658943715 100644 --- a/sys/kern/vnode_if.pl +++ b/sys/kern/vnode_if.pl @@ -32,6 +32,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 +# $Id$ # # Script to produce VFS front-end sugar. diff --git a/sys/kern/vnode_if.sh b/sys/kern/vnode_if.sh index e190fa04836df..339e658943715 100644 --- a/sys/kern/vnode_if.sh +++ b/sys/kern/vnode_if.sh @@ -32,6 +32,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 +# $Id$ # # Script to produce VFS front-end sugar. diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src index caee21dce0b76..c2b012edddfe2 100644 --- a/sys/kern/vnode_if.src +++ b/sys/kern/vnode_if.src @@ -31,6 +31,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.src 8.3 (Berkeley) 2/3/94 +# $Id$ # vop_lookup { IN struct vnode *dvp; diff --git a/sys/libkern/Makefile b/sys/libkern/Makefile index 991a4350144ec..2d6bafbb65f05 100644 --- a/sys/libkern/Makefile +++ b/sys/libkern/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 7.9 (Berkeley) 6/1/93 +# $Id$ LIB= kern CFLAGS+= -I${.CURDIR} -I${.CURDIR}/.. diff --git a/sys/libkern/adddi3.c b/sys/libkern/adddi3.c index d10da47e0cf3e..38b9df95e66b7 100644 --- a/sys/libkern/adddi3.c +++ b/sys/libkern/adddi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)adddi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/anddi3.c b/sys/libkern/anddi3.c index 5ae45ac1a86a0..9f92718ea6708 100644 --- a/sys/libkern/anddi3.c +++ b/sys/libkern/anddi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)anddi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/ashldi3.c b/sys/libkern/ashldi3.c index 72501adfaedd1..74fa0fdcdbced 100644 --- a/sys/libkern/ashldi3.c +++ b/sys/libkern/ashldi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)ashldi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/ashrdi3.c b/sys/libkern/ashrdi3.c index 9ffa5ed06b557..51b9da5fefdf8 100644 --- a/sys/libkern/ashrdi3.c +++ b/sys/libkern/ashrdi3.c @@ -33,6 +33,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #if defined(LIBC_SCCS) && !defined(lint) diff --git a/sys/libkern/bcmp.c b/sys/libkern/bcmp.c index 5a3ae616800e5..de9449b467177 100644 --- a/sys/libkern/bcmp.c +++ b/sys/libkern/bcmp.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)bcmp.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <string.h> /* diff --git a/sys/libkern/cmpdi2.c b/sys/libkern/cmpdi2.c index f6e4bdd6a4dfa..238bd4eb743ef 100644 --- a/sys/libkern/cmpdi2.c +++ b/sys/libkern/cmpdi2.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)cmpdi2.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/divdi3.c b/sys/libkern/divdi3.c index da7b2fccd015e..f6687f9c9601e 100644 --- a/sys/libkern/divdi3.c +++ b/sys/libkern/divdi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)divdi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/ffs.c b/sys/libkern/ffs.c index 099ff8e4c911e..74e24502caeee 100644 --- a/sys/libkern/ffs.c +++ b/sys/libkern/ffs.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)ffs.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <string.h> /* diff --git a/sys/libkern/iordi3.c b/sys/libkern/iordi3.c index e225005d414e2..2819cf8e5a0ae 100644 --- a/sys/libkern/iordi3.c +++ b/sys/libkern/iordi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)iordi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/libkern.h b/sys/libkern/libkern.h index 0e465e03dfded..d4669c7dd3d41 100644 --- a/sys/libkern/libkern.h +++ b/sys/libkern/libkern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)libkern.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/types.h> diff --git a/sys/libkern/locc.c b/sys/libkern/locc.c index 3767222c5f0fa..8a67e0f740f8c 100644 --- a/sys/libkern/locc.c +++ b/sys/libkern/locc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)locc.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <libkern/libkern.h> diff --git a/sys/libkern/lshldi3.c b/sys/libkern/lshldi3.c index 0af6051c1a61d..0aba85e008137 100644 --- a/sys/libkern/lshldi3.c +++ b/sys/libkern/lshldi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)lshldi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/lshrdi3.c b/sys/libkern/lshrdi3.c index add2eda988cfa..b93de210cec7e 100644 --- a/sys/libkern/lshrdi3.c +++ b/sys/libkern/lshrdi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)lshrdi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/mcount.c b/sys/libkern/mcount.c index 523217d1d2d94..fd8e6a30cd29b 100644 --- a/sys/libkern/mcount.c +++ b/sys/libkern/mcount.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if !defined(lint) && !defined(KERNEL) && defined(LIBC_SCCS) -static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; -#endif - #include <sys/param.h> #include <sys/gmon.h> diff --git a/sys/libkern/moddi3.c b/sys/libkern/moddi3.c index f31c6e84f2ba1..efb6f92a5387a 100644 --- a/sys/libkern/moddi3.c +++ b/sys/libkern/moddi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)moddi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/muldi3.c b/sys/libkern/muldi3.c index a8d7cfc7eabc8..49adc513a8f3c 100644 --- a/sys/libkern/muldi3.c +++ b/sys/libkern/muldi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)muldi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/negdi2.c b/sys/libkern/negdi2.c index bb8670d8e2cb4..c4065e218d036 100644 --- a/sys/libkern/negdi2.c +++ b/sys/libkern/negdi2.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)negdi2.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/notdi2.c b/sys/libkern/notdi2.c index d6247339a80be..f451088c35001 100644 --- a/sys/libkern/notdi2.c +++ b/sys/libkern/notdi2.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)notdi2.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/qdivrem.c b/sys/libkern/qdivrem.c index 34b94ceaab23e..caf4d7c7512f9 100644 --- a/sys/libkern/qdivrem.c +++ b/sys/libkern/qdivrem.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)qdivrem.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - /* * Multiprecision divide. This algorithm is from Knuth vol. 2 (2nd ed), * section 4.3.1, pp. 257--259. diff --git a/sys/libkern/quad.h b/sys/libkern/quad.h index bc6a2f8363278..dadd02c8a0f9d 100644 --- a/sys/libkern/quad.h +++ b/sys/libkern/quad.h @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)quad.h 8.1 (Berkeley) 6/4/93 + * $Id$ */ /* diff --git a/sys/libkern/random.c b/sys/libkern/random.c index 5153124e3fd34..7cdfd32f33e46 100644 --- a/sys/libkern/random.c +++ b/sys/libkern/random.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)random.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <libkern/libkern.h> diff --git a/sys/libkern/rindex.c b/sys/libkern/rindex.c index 69dced4c46dca..bd661fbeb0653 100644 --- a/sys/libkern/rindex.c +++ b/sys/libkern/rindex.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)rindex.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <stddef.h> #include <string.h> diff --git a/sys/libkern/scanc.c b/sys/libkern/scanc.c index 2d8b6a06dd68f..88bc3ffebc6ab 100644 --- a/sys/libkern/scanc.c +++ b/sys/libkern/scanc.c @@ -31,6 +31,8 @@ * SUCH DAMAGE. * * @(#)scanc.c 8.1 (Berkeley) 6/10/93 + * + * $Id$ */ #include <libkern/libkern.h> diff --git a/sys/libkern/skpc.c b/sys/libkern/skpc.c index 11b269ee7e783..43894ef2d5133 100644 --- a/sys/libkern/skpc.c +++ b/sys/libkern/skpc.c @@ -31,6 +31,8 @@ * SUCH DAMAGE. * * @(#)skpc.c 8.1 (Berkeley) 6/10/93 + * + * $Id$ */ #include <libkern/libkern.h> diff --git a/sys/libkern/strcat.c b/sys/libkern/strcat.c index 343696719b71d..07e79231ddb5f 100644 --- a/sys/libkern/strcat.c +++ b/sys/libkern/strcat.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strcat.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <string.h> char * diff --git a/sys/libkern/strcmp.c b/sys/libkern/strcmp.c index 79cfaa831b29e..c9c397b57124d 100644 --- a/sys/libkern/strcmp.c +++ b/sys/libkern/strcmp.c @@ -32,12 +32,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strcmp.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <string.h> diff --git a/sys/libkern/strcpy.c b/sys/libkern/strcpy.c index d1791dd00c356..2715720e3d23e 100644 --- a/sys/libkern/strcpy.c +++ b/sys/libkern/strcpy.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strcpy.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <string.h> diff --git a/sys/libkern/strlen.c b/sys/libkern/strlen.c index 323fbe4845265..1d1352c09e6b0 100644 --- a/sys/libkern/strlen.c +++ b/sys/libkern/strlen.c @@ -29,12 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strlen.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <string.h> diff --git a/sys/libkern/strncpy.c b/sys/libkern/strncpy.c index 9e72740b8b9f2..8aea6908849d7 100644 --- a/sys/libkern/strncpy.c +++ b/sys/libkern/strncpy.c @@ -32,12 +32,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strncpy.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/cdefs.h> #include <string.h> diff --git a/sys/libkern/subdi3.c b/sys/libkern/subdi3.c index e9763452e4f89..cb54477a4d45c 100644 --- a/sys/libkern/subdi3.c +++ b/sys/libkern/subdi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)subdi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/ucmpdi2.c b/sys/libkern/ucmpdi2.c index e5dfc435d9c32..4aa3e50637dd7 100644 --- a/sys/libkern/ucmpdi2.c +++ b/sys/libkern/ucmpdi2.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)ucmpdi2.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/udivdi3.c b/sys/libkern/udivdi3.c index 8ddd559891151..f9a77ec432c72 100644 --- a/sys/libkern/udivdi3.c +++ b/sys/libkern/udivdi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)udivdi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/umoddi3.c b/sys/libkern/umoddi3.c index 2a85f7699a6b6..ccd457d0adce7 100644 --- a/sys/libkern/umoddi3.c +++ b/sys/libkern/umoddi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)umoddi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/libkern/xordi3.c b/sys/libkern/xordi3.c index e3a858893605c..e49190902a22b 100644 --- a/sys/libkern/xordi3.c +++ b/sys/libkern/xordi3.c @@ -33,12 +33,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)xordi3.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include "quad.h" /* diff --git a/sys/miscfs/deadfs/dead_vnops.c b/sys/miscfs/deadfs/dead_vnops.c index cac8775810c01..947b885faabd2 100644 --- a/sys/miscfs/deadfs/dead_vnops.c +++ b/sys/miscfs/deadfs/dead_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)dead_vnops.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/miscfs/fifofs/fifo.h b/sys/miscfs/fifofs/fifo.h index e89186d8b8969..c57ba91393ad2 100644 --- a/sys/miscfs/fifofs/fifo.h +++ b/sys/miscfs/fifofs/fifo.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo.h 8.2 (Berkeley) 2/2/94 + * $Id$ */ #ifdef FIFO diff --git a/sys/miscfs/fifofs/fifo_vnops.c b/sys/miscfs/fifofs/fifo_vnops.c index a1ba3f4abf933..b09c77b286ebd 100644 --- a/sys/miscfs/fifofs/fifo_vnops.c +++ b/sys/miscfs/fifofs/fifo_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo_vnops.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/miscfs/kernfs/kernfs.h b/sys/miscfs/kernfs/kernfs.h index 75ddecc6db1c8..2def608e55fc9 100644 --- a/sys/miscfs/kernfs/kernfs.h +++ b/sys/miscfs/kernfs/kernfs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)kernfs.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #define _PATH_KERNFS "/kern" /* Default mountpoint */ diff --git a/sys/miscfs/kernfs/kernfs_vfsops.c b/sys/miscfs/kernfs/kernfs_vfsops.c index a3fa803b3e048..be0f7a9a2f984 100644 --- a/sys/miscfs/kernfs/kernfs_vfsops.c +++ b/sys/miscfs/kernfs/kernfs_vfsops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)kernfs_vfsops.c 8.4 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/miscfs/kernfs/kernfs_vnops.c b/sys/miscfs/kernfs/kernfs_vnops.c index db7377dfe3b87..0d925939fb2a7 100644 --- a/sys/miscfs/kernfs/kernfs_vnops.c +++ b/sys/miscfs/kernfs/kernfs_vnops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)kernfs_vnops.c 8.6 (Berkeley) 2/10/94 + * $Id$ */ /* diff --git a/sys/miscfs/nullfs/null_vnops.c b/sys/miscfs/nullfs/null_vnops.c index 115ff6f464326..0fed55342f65d 100644 --- a/sys/miscfs/nullfs/null_vnops.c +++ b/sys/miscfs/nullfs/null_vnops.c @@ -35,11 +35,7 @@ * * @(#)null_vnops.c 8.1 (Berkeley) 6/10/93 * - * Ancestors: - * @(#)lofs_vnops.c 1.2 (Berkeley) 6/18/92 - * $Id: lofs_vnops.c,v 1.11 1992/05/30 10:05:43 jsp Exp jsp $ - * ...and... - * @(#)null_vnodeops.c 1.20 92/07/07 UCLA Ficus project + * $Id$ */ /* diff --git a/sys/miscfs/procfs/procfs.h b/sys/miscfs/procfs/procfs.h index f7b8fa3ef0ed6..7a1bbb81214b8 100644 --- a/sys/miscfs/procfs/procfs.h +++ b/sys/miscfs/procfs/procfs.h @@ -36,8 +36,7 @@ * * @(#)procfs.h 8.6 (Berkeley) 2/3/94 * - * From: - * $Id: procfs.h,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs.h,v 1.1.1.1 1994/05/24 10:05:07 rgrimes Exp $ */ /* diff --git a/sys/miscfs/procfs/procfs_ctl.c b/sys/miscfs/procfs/procfs_ctl.c index a42a03ce91cd5..44ee3fd4bb1d1 100644 --- a/sys/miscfs/procfs/procfs_ctl.c +++ b/sys/miscfs/procfs/procfs_ctl.c @@ -36,8 +36,7 @@ * * @(#)procfs_ctl.c 8.3 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_ctl.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_ctl.c,v 1.1.1.1 1994/05/24 10:05:10 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/miscfs/procfs/procfs_fpregs.c b/sys/miscfs/procfs/procfs_fpregs.c index 6d850a6a881b5..331a671279e26 100644 --- a/sys/miscfs/procfs/procfs_fpregs.c +++ b/sys/miscfs/procfs/procfs_fpregs.c @@ -36,8 +36,7 @@ * * @(#)procfs_fpregs.c 8.1 (Berkeley) 1/27/94 * - * From: - * $Id: procfs_regs.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_fpregs.c,v 1.1.1.1 1994/05/24 10:05:09 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/miscfs/procfs/procfs_mem.c b/sys/miscfs/procfs/procfs_mem.c index 039983da09c6e..f297df0bfeb0e 100644 --- a/sys/miscfs/procfs/procfs_mem.c +++ b/sys/miscfs/procfs/procfs_mem.c @@ -37,8 +37,7 @@ * * @(#)procfs_mem.c 8.4 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_mem.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_mem.c,v 1.1.1.1 1994/05/24 10:05:09 rgrimes Exp $ */ /* diff --git a/sys/miscfs/procfs/procfs_note.c b/sys/miscfs/procfs/procfs_note.c index bf2f160baa0df..a7699f29e123c 100644 --- a/sys/miscfs/procfs/procfs_note.c +++ b/sys/miscfs/procfs/procfs_note.c @@ -36,8 +36,7 @@ * * @(#)procfs_note.c 8.2 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_note.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_note.c,v 1.1.1.1 1994/05/24 10:05:09 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/miscfs/procfs/procfs_regs.c b/sys/miscfs/procfs/procfs_regs.c index fa95fef8f102e..8b0600a480d00 100644 --- a/sys/miscfs/procfs/procfs_regs.c +++ b/sys/miscfs/procfs/procfs_regs.c @@ -36,8 +36,7 @@ * * @(#)procfs_regs.c 8.3 (Berkeley) 1/27/94 * - * From: - * $Id: procfs_regs.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_regs.c,v 1.1.1.1 1994/05/24 10:05:08 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/miscfs/procfs/procfs_status.c b/sys/miscfs/procfs/procfs_status.c index d88aaabdfb057..1792dfde0063c 100644 --- a/sys/miscfs/procfs/procfs_status.c +++ b/sys/miscfs/procfs/procfs_status.c @@ -36,8 +36,7 @@ * * @(#)procfs_status.c 8.3 (Berkeley) 2/17/94 * - * From: - * $Id: procfs_status.c,v 3.1 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_status.c,v 1.1.1.1 1994/05/24 10:05:08 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/miscfs/procfs/procfs_subr.c b/sys/miscfs/procfs/procfs_subr.c index b371af19af0b0..b5ab705dd2649 100644 --- a/sys/miscfs/procfs/procfs_subr.c +++ b/sys/miscfs/procfs/procfs_subr.c @@ -36,8 +36,7 @@ * * @(#)procfs_subr.c 8.4 (Berkeley) 1/27/94 * - * From: - * $Id: procfs_subr.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_subr.c,v 1.1.1.1 1994/05/24 10:05:08 rgrimes Exp $ */ #include <sys/param.h> diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c index 67dc31f78b3bb..b5c9c7d9226a7 100644 --- a/sys/miscfs/procfs/procfs_vfsops.c +++ b/sys/miscfs/procfs/procfs_vfsops.c @@ -36,8 +36,7 @@ * * @(#)procfs_vfsops.c 8.4 (Berkeley) 1/21/94 * - * From: - * $Id: procfs_vfsops.c,v 3.1 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_vfsops.c,v 1.2 1994/05/25 09:08:33 rgrimes Exp $ */ /* diff --git a/sys/miscfs/procfs/procfs_vnops.c b/sys/miscfs/procfs/procfs_vnops.c index b6c6e6fa572a6..e06d1316e98ed 100644 --- a/sys/miscfs/procfs/procfs_vnops.c +++ b/sys/miscfs/procfs/procfs_vnops.c @@ -36,8 +36,7 @@ * * @(#)procfs_vnops.c 8.6 (Berkeley) 2/7/94 * - * From: - * $Id: procfs_vnops.c,v 3.2 1993/12/15 09:40:17 jsp Exp $ + * $Id: procfs_vnops.c,v 1.2 1994/05/25 09:08:39 rgrimes Exp $ */ /* diff --git a/sys/miscfs/specfs/spec_vnops.c b/sys/miscfs/specfs/spec_vnops.c index 55b5dd8d433bd..08907a2c272ca 100644 --- a/sys/miscfs/specfs/spec_vnops.c +++ b/sys/miscfs/specfs/spec_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spec_vnops.c 8.6 (Berkeley) 4/9/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/miscfs/specfs/specdev.h b/sys/miscfs/specfs/specdev.h index a13b66e51132a..bc26f9d59d127 100644 --- a/sys/miscfs/specfs/specdev.h +++ b/sys/miscfs/specfs/specdev.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)specdev.h 8.2 (Berkeley) 2/2/94 + * $Id$ */ /* diff --git a/sys/miscfs/umapfs/umap.h b/sys/miscfs/umapfs/umap.h index 9f4d1e7ace536..5903d30e3fa10 100644 --- a/sys/miscfs/umapfs/umap.h +++ b/sys/miscfs/umapfs/umap.h @@ -35,7 +35,7 @@ * * @(#)umap.h 8.3 (Berkeley) 1/21/94 * - * @(#)null_vnops.c 1.5 (Berkeley) 7/10/92 + * $Id$ */ #define MAPFILEENTRIES 64 diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c index 2480a85e440c4..67adb98ea9bf9 100644 --- a/sys/miscfs/umapfs/umap_vfsops.c +++ b/sys/miscfs/umapfs/umap_vfsops.c @@ -35,7 +35,7 @@ * * @(#)umap_vfsops.c 8.3 (Berkeley) 1/21/94 * - * @(#)null_vfsops.c 1.5 (Berkeley) 7/10/92 + * $Id$ */ /* diff --git a/sys/miscfs/umapfs/umap_vnops.c b/sys/miscfs/umapfs/umap_vnops.c index 0c1955f1ed33b..cda81532453d7 100644 --- a/sys/miscfs/umapfs/umap_vnops.c +++ b/sys/miscfs/umapfs/umap_vnops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)umap_vnops.c 8.3 (Berkeley) 1/5/94 + * $Id$ */ /* diff --git a/sys/miscfs/union/libc.opendir.c b/sys/miscfs/union/libc.opendir.c index 99ed58b86fd4d..15e3a0ce76376 100644 --- a/sys/miscfs/union/libc.opendir.c +++ b/sys/miscfs/union/libc.opendir.c @@ -29,13 +29,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char orig_sccsid[] = "@(#)opendir.c 8.2 (Berkeley) 2/12/94"; -static char sccsid[] = "@(#)libc.opendir.c 8.1 (Berkeley) 2/15/94"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/param.h> #include <sys/mount.h> diff --git a/sys/miscfs/union/union.h b/sys/miscfs/union/union.h index 463218ac3ed29..b66e17caa8265 100644 --- a/sys/miscfs/union/union.h +++ b/sys/miscfs/union/union.h @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union.h 8.2 (Berkeley) 2/17/94 + * $Id$ */ struct union_args { diff --git a/sys/miscfs/union/union_subr.c b/sys/miscfs/union/union_subr.c index ea4f804a24db4..b73b63846c56d 100644 --- a/sys/miscfs/union/union_subr.c +++ b/sys/miscfs/union/union_subr.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union_subr.c 8.4 (Berkeley) 2/17/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/miscfs/union/union_vfsops.c b/sys/miscfs/union/union_vfsops.c index 42931d7c7bc1b..0dbcc0152c22b 100644 --- a/sys/miscfs/union/union_vfsops.c +++ b/sys/miscfs/union/union_vfsops.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vfsops.c 8.7 (Berkeley) 3/5/94 + * $Id$ */ /* diff --git a/sys/miscfs/union/union_vnops.c b/sys/miscfs/union/union_vnops.c index 30f223350b215..bad3b1369da30 100644 --- a/sys/miscfs/union/union_vnops.c +++ b/sys/miscfs/union/union_vnops.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vnops.c 8.6 (Berkeley) 2/17/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/bpf.c b/sys/net/bpf.c index e40b769b9802c..91c60f4569641 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -37,8 +37,7 @@ * * @(#)bpf.c 8.2 (Berkeley) 3/28/94 * - * static char rcsid[] = - * "$Header: bpf.c,v 1.33 91/10/27 21:21:58 mccanne Exp $"; + * $Id$ */ #include "bpfilter.h" diff --git a/sys/net/bpf.h b/sys/net/bpf.h index 2e093ac5ce11f..ccea1ea78c697 100644 --- a/sys/net/bpf.h +++ b/sys/net/bpf.h @@ -37,7 +37,7 @@ * * @(#)bpf.h 8.1 (Berkeley) 6/10/93 * - * @(#) $Header: bpf.h,v 1.24 91/10/27 21:22:32 mccanne Exp $ (LBL) + * $Id$ */ /* diff --git a/sys/net/bpf_compat.h b/sys/net/bpf_compat.h index 132a6df645266..682426c966393 100644 --- a/sys/net/bpf_compat.h +++ b/sys/net/bpf_compat.h @@ -31,10 +31,9 @@ * SUCH DAMAGE. * * @(#)bpf_compat.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ -/* from: $Header: bpf_compat.h,v 1.1 92/05/22 15:33:20 mccanne Exp $ (LBL) */ - /* * Some hacks for compatibility across SunOS and 4.4BSD. We emulate malloc * and free with mbuf clusters. We store a pointer to the mbuf in the first diff --git a/sys/net/bpf_filter.c b/sys/net/bpf_filter.c index cfae7769fc412..8265410b37fde 100644 --- a/sys/net/bpf_filter.c +++ b/sys/net/bpf_filter.c @@ -37,8 +37,7 @@ * * @(#)bpf_filter.c 8.1 (Berkeley) 6/10/93 * - * static char rcsid[] = - * "$Header: bpf_filter.c,v 1.16 91/10/27 21:22:35 mccanne Exp $"; + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/bpfdesc.h b/sys/net/bpfdesc.h index 36e3d26182426..fbcc3ffe448c3 100644 --- a/sys/net/bpfdesc.h +++ b/sys/net/bpfdesc.h @@ -37,7 +37,7 @@ * * @(#)bpfdesc.h 8.1 (Berkeley) 6/10/93 * - * @(#) $Header: bpfdesc.h,v 1.9 91/10/27 21:22:38 mccanne Exp $ (LBL) + * $Id$ */ #include <sys/select.h> diff --git a/sys/net/if.c b/sys/net/if.c index 36963885cc71f..c82aafc1f2c91 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/if.h b/sys/net/if.h index e0bf7958b73cc..b1b7de913abfe 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h index 84581cbb98d97..9642ddfbbf1b4 100644 --- a/sys/net/if_arp.h +++ b/sys/net/if_arp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_arp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/if_dl.h b/sys/net/if_dl.h index 3e53449085aa5..d08f393d53eb6 100644 --- a/sys/net/if_dl.h +++ b/sys/net/if_dl.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_dl.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index d4d6680fdb02d..daba4b65f5bbb 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ethersubr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/if_llc.h b/sys/net/if_llc.h index 90dcb07991de0..b5793daa63745 100644 --- a/sys/net/if_llc.h +++ b/sys/net/if_llc.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_llc.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 9a5a9575d4c17..ff29dc054ebba 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_loop.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/if_sl.c b/sys/net/if_sl.c index 46ae9adf809d3..7865c3c41d90f 100644 --- a/sys/net/if_sl.c +++ b/sys/net/if_sl.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_sl.c 8.6 (Berkeley) 2/1/94 + * $Id$ */ /* diff --git a/sys/net/if_slvar.h b/sys/net/if_slvar.h index e7b27647284f2..b3626f3c66792 100644 --- a/sys/net/if_slvar.h +++ b/sys/net/if_slvar.h @@ -32,7 +32,7 @@ * * @(#)if_slvar.h 8.3 (Berkeley) 2/1/94 * - * $Header: if_slvar.h,v 1.3 89/05/31 02:25:18 van Exp $ + * $Id$ */ /* diff --git a/sys/net/if_types.h b/sys/net/if_types.h index 030f234fbac98..3f1b59ea3fc35 100644 --- a/sys/net/if_types.h +++ b/sys/net/if_types.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_types.h 8.2 (Berkeley) 4/20/94 + * $Id$ */ /* diff --git a/sys/net/netisr.h b/sys/net/netisr.h index 03c5288d8d2dd..48bec1c37e4d9 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)netisr.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/radix.c b/sys/net/radix.c index fb34adb9e0a74..29fd378e35608 100644 --- a/sys/net/radix.c +++ b/sys/net/radix.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)radix.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/net/radix.h b/sys/net/radix.h index a11057f0439ef..1f79cd5caec93 100644 --- a/sys/net/radix.h +++ b/sys/net/radix.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)radix.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifndef _RADIX_H_ diff --git a/sys/net/raw_cb.c b/sys/net/raw_cb.c index e44192d2e83f6..f710eedc9bb76 100644 --- a/sys/net/raw_cb.c +++ b/sys/net/raw_cb.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_cb.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/raw_cb.h b/sys/net/raw_cb.h index 6003e181edb46..65b3621e92f89 100644 --- a/sys/net/raw_cb.h +++ b/sys/net/raw_cb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_cb.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/net/raw_usrreq.c b/sys/net/raw_usrreq.c index 560106ef95cd3..41c72fab6cf35 100644 --- a/sys/net/raw_usrreq.c +++ b/sys/net/raw_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/route.c b/sys/net/route.c index f37e84c6f6e4e..9673a7abb2e18 100644 --- a/sys/net/route.c +++ b/sys/net/route.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)route.c 8.2 (Berkeley) 11/15/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/route.h b/sys/net/route.h index 92f672c19ecb2..e9c387395c6f4 100644 --- a/sys/net/route.h +++ b/sys/net/route.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)route.h 8.3 (Berkeley) 4/19/94 + * $Id$ */ /* diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c index db0192f4d91fe..0e1378caed1d6 100644 --- a/sys/net/rtsock.c +++ b/sys/net/rtsock.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)rtsock.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/net/slcompress.c b/sys/net/slcompress.c index 70af9358e37b7..4439ce4b5f471 100644 --- a/sys/net/slcompress.c +++ b/sys/net/slcompress.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)slcompress.c 8.2 (Berkeley) 4/16/94 + * $Id$ */ /* @@ -40,8 +41,6 @@ * Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989: * - Initial distribution. * - * static char rcsid[] = - * "$Header: slcompress.c,v 1.19 89/12/31 08:52:59 van Exp $"; */ #include <sys/param.h> diff --git a/sys/net/slcompress.h b/sys/net/slcompress.h index cefe940f1981b..6df5fa6443fa5 100644 --- a/sys/net/slcompress.h +++ b/sys/net/slcompress.h @@ -2,8 +2,6 @@ /* * Definitions for tcp compression routines. * - * $Header: slcompress.h,v 1.10 89/12/31 08:53:02 van Exp $ - * * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. * @@ -37,6 +35,7 @@ * * Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989: * - Initial distribution. + * $Id$ */ #define MAX_STATES 16 /* must be > 2 and < 256 */ diff --git a/sys/net/slip.h b/sys/net/slip.h index 4caeb464df33a..52ecfed60365e 100644 --- a/sys/net/slip.h +++ b/sys/net/slip.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)slip.h 8.1 (Berkeley) 2/12/94 + * $Id$ */ /* Ioctls operating on SLIP ttys. */ diff --git a/sys/netccitt/ccitt_proto.c b/sys/netccitt/ccitt_proto.c index d832fd38f9260..6204dcd89c304 100644 --- a/sys/netccitt/ccitt_proto.c +++ b/sys/netccitt/ccitt_proto.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ccitt_proto.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/dll.h b/sys/netccitt/dll.h index 46ded88eda889..082d3d3c8cc76 100644 --- a/sys/netccitt/dll.h +++ b/sys/netccitt/dll.h @@ -33,6 +33,7 @@ * SUCH DAMAGE. * * @(#)dll.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netccitt/hd_debug.c b/sys/netccitt/hd_debug.c index b8a45a3f59a3b..058a21caaff73 100644 --- a/sys/netccitt/hd_debug.c +++ b/sys/netccitt/hd_debug.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hd_debug.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/hd_input.c b/sys/netccitt/hd_input.c index eb939d0319913..9bdab0b72f946 100644 --- a/sys/netccitt/hd_input.c +++ b/sys/netccitt/hd_input.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hd_input.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/hd_output.c b/sys/netccitt/hd_output.c index 05992e1deb1cc..c1db5f08a15d2 100644 --- a/sys/netccitt/hd_output.c +++ b/sys/netccitt/hd_output.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hd_output.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/hd_subr.c b/sys/netccitt/hd_subr.c index c75ab07568e94..7d051274a37a9 100644 --- a/sys/netccitt/hd_subr.c +++ b/sys/netccitt/hd_subr.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hd_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/hd_timer.c b/sys/netccitt/hd_timer.c index a3bf12addf004..8b2ede482c78e 100644 --- a/sys/netccitt/hd_timer.c +++ b/sys/netccitt/hd_timer.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hd_timer.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/hd_var.h b/sys/netccitt/hd_var.h index 5fefe0869a4d8..0ae196279dce6 100644 --- a/sys/netccitt/hd_var.h +++ b/sys/netccitt/hd_var.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hd_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netccitt/hdlc.h b/sys/netccitt/hdlc.h index 60cf7adf07221..62e717757bee7 100644 --- a/sys/netccitt/hdlc.h +++ b/sys/netccitt/hdlc.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)hdlc.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifndef ORDER4 diff --git a/sys/netccitt/if_x25subr.c b/sys/netccitt/if_x25subr.c index 6f00496a18b38..68812f4303c43 100644 --- a/sys/netccitt/if_x25subr.c +++ b/sys/netccitt/if_x25subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_x25subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/llc_input.c b/sys/netccitt/llc_input.c index 7a01973d9794e..94400c18285ca 100644 --- a/sys/netccitt/llc_input.c +++ b/sys/netccitt/llc_input.c @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)llc_input.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/llc_output.c b/sys/netccitt/llc_output.c index 98d0328a5f555..aacba3d0c09bb 100644 --- a/sys/netccitt/llc_output.c +++ b/sys/netccitt/llc_output.c @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)llc_output.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/llc_subr.c b/sys/netccitt/llc_subr.c index 46848fdf5bcee..dd604a378f920 100644 --- a/sys/netccitt/llc_subr.c +++ b/sys/netccitt/llc_subr.c @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)llc_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/llc_timer.c b/sys/netccitt/llc_timer.c index 0aecd08b68d66..06d3cf3c3f3d4 100644 --- a/sys/netccitt/llc_timer.c +++ b/sys/netccitt/llc_timer.c @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)llc_timer.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/llc_var.h b/sys/netccitt/llc_var.h index a27db52d37ab9..18b6be96ac930 100644 --- a/sys/netccitt/llc_var.h +++ b/sys/netccitt/llc_var.h @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)llc_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifdef __STDC__ diff --git a/sys/netccitt/pk.h b/sys/netccitt/pk.h index 528e0a6808034..da96bf1adb909 100644 --- a/sys/netccitt/pk.h +++ b/sys/netccitt/pk.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)pk.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netccitt/pk_acct.c b/sys/netccitt/pk_acct.c index fccd875285e05..e05cf69878556 100644 --- a/sys/netccitt/pk_acct.c +++ b/sys/netccitt/pk_acct.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)pk_acct.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_debug.c b/sys/netccitt/pk_debug.c index b5103557c5692..338d167b37f02 100644 --- a/sys/netccitt/pk_debug.c +++ b/sys/netccitt/pk_debug.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)pk_debug.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_input.c b/sys/netccitt/pk_input.c index 1f8f0bc71277e..0438b84259d10 100644 --- a/sys/netccitt/pk_input.c +++ b/sys/netccitt/pk_input.c @@ -39,6 +39,7 @@ * SUCH DAMAGE. * * @(#)pk_input.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_llcsubr.c b/sys/netccitt/pk_llcsubr.c index d8cc5016a28dc..7269fb29f220c 100644 --- a/sys/netccitt/pk_llcsubr.c +++ b/sys/netccitt/pk_llcsubr.c @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)pk_llcsubr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_output.c b/sys/netccitt/pk_output.c index ccc02a4c3274e..95b6026c0f8ca 100644 --- a/sys/netccitt/pk_output.c +++ b/sys/netccitt/pk_output.c @@ -39,6 +39,7 @@ * SUCH DAMAGE. * * @(#)pk_output.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_subr.c b/sys/netccitt/pk_subr.c index 44c43b6f3f6b5..ffbc8576b0bf8 100644 --- a/sys/netccitt/pk_subr.c +++ b/sys/netccitt/pk_subr.c @@ -39,6 +39,7 @@ * SUCH DAMAGE. * * @(#)pk_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_timer.c b/sys/netccitt/pk_timer.c index 52c1860b4b4e0..4b7db0a41de31 100644 --- a/sys/netccitt/pk_timer.c +++ b/sys/netccitt/pk_timer.c @@ -39,6 +39,7 @@ * SUCH DAMAGE. * * @(#)pk_timer.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_usrreq.c b/sys/netccitt/pk_usrreq.c index d0dc42c0d4038..1d1c0e70a1fc5 100644 --- a/sys/netccitt/pk_usrreq.c +++ b/sys/netccitt/pk_usrreq.c @@ -39,6 +39,7 @@ * SUCH DAMAGE. * * @(#)pk_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netccitt/pk_var.h b/sys/netccitt/pk_var.h index beda05dc37528..df29acfcbbe7c 100644 --- a/sys/netccitt/pk_var.h +++ b/sys/netccitt/pk_var.h @@ -39,6 +39,7 @@ * SUCH DAMAGE. * * @(#)pk_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netccitt/x25.h b/sys/netccitt/x25.h index e86af39a1a67e..1fbbe3eb1376b 100644 --- a/sys/netccitt/x25.h +++ b/sys/netccitt/x25.h @@ -38,6 +38,7 @@ * SUCH DAMAGE. * * @(#)x25.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifdef KERNEL diff --git a/sys/netccitt/x25acct.h b/sys/netccitt/x25acct.h index 71f3fd89603a9..ee5b3249070bd 100644 --- a/sys/netccitt/x25acct.h +++ b/sys/netccitt/x25acct.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)x25acct.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netccitt/x25err.h b/sys/netccitt/x25err.h index 44d5490b422d4..9cf5ade99f637 100644 --- a/sys/netccitt/x25err.h +++ b/sys/netccitt/x25err.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)x25err.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/icmp_var.h b/sys/netinet/icmp_var.h index beef16e1836de..43534534241c5 100644 --- a/sys/netinet/icmp_var.h +++ b/sys/netinet/icmp_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)icmp_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 41f07c017b8a9..3b9e3d84ec091 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ether.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h index 6b4def054f785..db5a3da5e50ef 100644 --- a/sys/netinet/if_ether.h +++ b/sys/netinet/if_ether.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ether.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/igmp.c b/sys/netinet/igmp.c index cc240eb806f80..e39d2d9945d11 100644 --- a/sys/netinet/igmp.c +++ b/sys/netinet/igmp.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)igmp.c 8.1 (Berkeley) 7/19/93 + * $Id$ */ /* Internet Group Management Protocol (IGMP) routines. */ diff --git a/sys/netinet/igmp.h b/sys/netinet/igmp.h index 29ce21dee6f03..bb3462d2ddcd7 100644 --- a/sys/netinet/igmp.h +++ b/sys/netinet/igmp.h @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)igmp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* Internet Group Management Protocol (IGMP) definitions. */ diff --git a/sys/netinet/igmp_var.h b/sys/netinet/igmp_var.h index ff70f70e2b34f..a0d380914c1d7 100644 --- a/sys/netinet/igmp_var.h +++ b/sys/netinet/igmp_var.h @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)igmp_var.h 8.1 (Berkeley) 7/19/93 + * $Id$ */ /* diff --git a/sys/netinet/in.c b/sys/netinet/in.c index bcf34e8169310..a070c6d5f34ce 100644 --- a/sys/netinet/in.c +++ b/sys/netinet/in.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in.c 8.2 (Berkeley) 11/15/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/in.h b/sys/netinet/in.h index 1ce9948f6e34b..e25fb5d6f072c 100644 --- a/sys/netinet/in.h +++ b/sys/netinet/in.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in.h 8.3 (Berkeley) 1/3/94 + * $Id$ */ /* diff --git a/sys/netinet/in_cksum.c b/sys/netinet/in_cksum.c index c19a92008360d..daac129037614 100644 --- a/sys/netinet/in_cksum.c +++ b/sys/netinet/in_cksum.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in_cksum.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index a8b1c6f8cbf46..f4a3287cecd46 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in_pcb.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index baa8be30a8bec..5309b37cddc17 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in_pcb.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index 9927c5acb5959..fda64a13c940e 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in_proto.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/in_systm.h b/sys/netinet/in_systm.h index cbd8e539a1ef4..d8939a07879b4 100644 --- a/sys/netinet/in_systm.h +++ b/sys/netinet/in_systm.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in_systm.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/in_var.h b/sys/netinet/in_var.h index d3d4c258d4736..544d8017a3712 100644 --- a/sys/netinet/in_var.h +++ b/sys/netinet/in_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)in_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/ip.h b/sys/netinet/ip.h index 8a31dfaf13dc7..2542175e982fa 100644 --- a/sys/netinet/ip.h +++ b/sys/netinet/ip.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ip.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c index c9b82bca90857..1b7f80a74eb26 100644 --- a/sys/netinet/ip_icmp.c +++ b/sys/netinet/ip_icmp.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/ip_icmp.h b/sys/netinet/ip_icmp.h index 3c3462d326677..583a049afc58a 100644 --- a/sys/netinet/ip_icmp.h +++ b/sys/netinet/ip_icmp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_icmp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index c720ff47f4c4e..38c341d82e9ff 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_input.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/ip_mroute.c b/sys/netinet/ip_mroute.c index bb26c874182ec..b07d9193e1bce 100644 --- a/sys/netinet/ip_mroute.c +++ b/sys/netinet/ip_mroute.c @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)ip_mroute.c 8.2 (Berkeley) 11/15/93 + * $Id$ */ /* diff --git a/sys/netinet/ip_mroute.h b/sys/netinet/ip_mroute.h index adb40be9552d5..cbedcf5a17a9d 100644 --- a/sys/netinet/ip_mroute.h +++ b/sys/netinet/ip_mroute.h @@ -35,6 +35,7 @@ * SUCH DAMAGE. * * @(#)ip_mroute.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 89c6de4ad5940..f20ab71c85a50 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_output.c 8.3 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 27eda5e67cdca..c5bd50cc94613 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c index c8092ee9ec75c..86c2b5a618e7a 100644 --- a/sys/netinet/raw_ip.c +++ b/sys/netinet/raw_ip.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_ip.c 8.2 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/tcp.h b/sys/netinet/tcp.h index 6b77ff663a415..fc9ae26ee2ea6 100644 --- a/sys/netinet/tcp.h +++ b/sys/netinet/tcp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ typedef u_long tcp_seq; diff --git a/sys/netinet/tcp_debug.c b/sys/netinet/tcp_debug.c index ddb30927b4ac2..c759626b3183b 100644 --- a/sys/netinet/tcp_debug.c +++ b/sys/netinet/tcp_debug.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifdef TCPDEBUG diff --git a/sys/netinet/tcp_debug.h b/sys/netinet/tcp_debug.h index c02c0cd521d21..851809fb29b5b 100644 --- a/sys/netinet/tcp_debug.h +++ b/sys/netinet/tcp_debug.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_debug.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ struct tcp_debug { diff --git a/sys/netinet/tcp_fsm.h b/sys/netinet/tcp_fsm.h index c5da7fc32d91e..70518a9382988 100644 --- a/sys/netinet/tcp_fsm.h +++ b/sys/netinet/tcp_fsm.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_fsm.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 121cb94762f8c..d6e779bde4df7 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.5 (Berkeley) 4/10/94 + * $Id$ */ #ifndef TUBA_INCLUDE diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 667579fc0ed8a..92ad379133b70 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_output.c 8.3 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index 121cb94762f8c..d6e779bde4df7 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.5 (Berkeley) 4/10/94 + * $Id$ */ #ifndef TUBA_INCLUDE diff --git a/sys/netinet/tcp_seq.h b/sys/netinet/tcp_seq.h index 8912299ff7996..7305eb7d704b7 100644 --- a/sys/netinet/tcp_seq.h +++ b/sys/netinet/tcp_seq.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_seq.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index dd5940bbf4aca..b0fd7a55fdf74 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c index 0c0f0f8c2f194..3c7fb1fe9326a 100644 --- a/sys/netinet/tcp_timer.c +++ b/sys/netinet/tcp_timer.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_timer.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifndef TUBA_INCLUDE diff --git a/sys/netinet/tcp_timer.h b/sys/netinet/tcp_timer.h index 7c31125e40f06..19ea6c25d308b 100644 --- a/sys/netinet/tcp_timer.h +++ b/sys/netinet/tcp_timer.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_timer.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/tcp_timewait.c b/sys/netinet/tcp_timewait.c index dd5940bbf4aca..b0fd7a55fdf74 100644 --- a/sys/netinet/tcp_timewait.c +++ b/sys/netinet/tcp_timewait.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 37dac23af77c0..be544a6eea8fa 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 8a8e75121141f..1b9730a1e8afe 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_var.h 8.3 (Berkeley) 4/10/94 + * $Id$ */ /* diff --git a/sys/netinet/tcpip.h b/sys/netinet/tcpip.h index 5000ae303ce31..3059c8e7cb348 100644 --- a/sys/netinet/tcpip.h +++ b/sys/netinet/tcpip.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tcpip.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/udp.h b/sys/netinet/udp.h index 354a213cbc2a0..61a5021f35c3c 100644 --- a/sys/netinet/udp.h +++ b/sys/netinet/udp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)udp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 9ed53e8bef69b..fbd83ae0ed527 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)udp_usrreq.c 8.4 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netinet/udp_var.h b/sys/netinet/udp_var.h index e8a21d261c50f..8060ab028dd0e 100644 --- a/sys/netinet/udp_var.h +++ b/sys/netinet/udp_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)udp_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netiso/argo_debug.h b/sys/netiso/argo_debug.h index 653982f005af3..7aff1c20cd9d0 100644 --- a/sys/netiso/argo_debug.h +++ b/sys/netiso/argo_debug.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)argo_debug.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /***************************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: argo_debug.h,v 4.6 88/07/19 15:53:40 hagens Exp $ - * $Source: /usr/argo/sys/netiso/RCS/argo_debug.h,v $ + * $Header: /home/ncvs/src/sys/netiso/argo_debug.h,v 1.1.1.1 1994/05/24 10:06:38 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/argo_debug.h,v $ */ #ifndef __ARGO_DEBUG__ diff --git a/sys/netiso/clnl.h b/sys/netiso/clnl.h index 87227dc273bbb..ff5451af5b5e4 100644 --- a/sys/netiso/clnl.h +++ b/sys/netiso/clnl.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnl.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** diff --git a/sys/netiso/clnp.h b/sys/netiso/clnp.h index 4c81ba37d9ccc..541204bdf960e 100644 --- a/sys/netiso/clnp.h +++ b/sys/netiso/clnp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp.h 8.2 (Berkeley) 4/16/94 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /big/BSD4.4/isis-usr/src/sys/netiso/RCS/clnp.h,v 1.1 1992/02/07 18:14:59 hagens Exp hagens $ */ -/* $Source: /big/BSD4.4/isis-usr/src/sys/netiso/RCS/clnp.h,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp.h,v 1.1.1.1 1994/05/24 10:07:27 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp.h,v $ */ /* should be config option but cpp breaks with too many #defines */ #define DECBIT diff --git a/sys/netiso/clnp_debug.c b/sys/netiso/clnp_debug.c index 964638e244b69..d3898349a3c52 100644 --- a/sys/netiso/clnp_debug.c +++ b/sys/netiso/clnp_debug.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_debug.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: clnp_debug.c,v 4.2 88/06/29 14:58:34 hagens Exp $ */ -/* $Source: /usr/argo/sys/netargo/RCS/clnp_debug.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_debug.c,v 1.1.1.1 1994/05/24 10:07:26 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_debug.c,v $ */ #include <sys/param.h> #include <sys/mbuf.h> diff --git a/sys/netiso/clnp_er.c b/sys/netiso/clnp_er.c index 8b7f45b77a475..fb17e5f3688c6 100644 --- a/sys/netiso/clnp_er.c +++ b/sys/netiso/clnp_er.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_er.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_er.c,v 5.1 89/02/09 16:20:18 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_er.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_er.c,v 1.1.1.1 1994/05/24 10:07:26 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_er.c,v $ */ #include <sys/param.h> #include <sys/mbuf.h> diff --git a/sys/netiso/clnp_frag.c b/sys/netiso/clnp_frag.c index 546a592ccf700..50e13d413a5fb 100644 --- a/sys/netiso/clnp_frag.c +++ b/sys/netiso/clnp_frag.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_frag.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_frag.c,v 5.1 89/02/09 16:20:26 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_frag.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_frag.c,v 1.1.1.1 1994/05/24 10:07:25 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_frag.c,v $ */ #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/netiso/clnp_input.c b/sys/netiso/clnp_input.c index c49de95e5fac8..362bd8745c45c 100644 --- a/sys/netiso/clnp_input.c +++ b/sys/netiso/clnp_input.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_input.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_input.c,v 5.1 89/02/09 16:20:32 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_input.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_input.c,v 1.1.1.1 1994/05/24 10:07:24 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_input.c,v $ */ #include <sys/param.h> #include <sys/mbuf.h> diff --git a/sys/netiso/clnp_options.c b/sys/netiso/clnp_options.c index 250b438664f93..de44ff0ffb6ba 100644 --- a/sys/netiso/clnp_options.c +++ b/sys/netiso/clnp_options.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_options.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_options.c,v 5.1 89/02/09 16:20:37 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_options.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_options.c,v 1.1.1.1 1994/05/24 10:07:23 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_options.c,v $ */ #ifdef ISO diff --git a/sys/netiso/clnp_output.c b/sys/netiso/clnp_output.c index aba9f6e00bdf0..de035c22f16ff 100644 --- a/sys/netiso/clnp_output.c +++ b/sys/netiso/clnp_output.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_output.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_output.c,v 5.0 89/02/08 12:00:15 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_output.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_output.c,v 1.1.1.1 1994/05/24 10:07:22 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_output.c,v $ */ #include <sys/param.h> #include <sys/mbuf.h> diff --git a/sys/netiso/clnp_raw.c b/sys/netiso/clnp_raw.c index 0bc3dbac4b171..df6878c65e3c6 100644 --- a/sys/netiso/clnp_raw.c +++ b/sys/netiso/clnp_raw.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_raw.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: clnp_raw.c,v 4.2 88/06/29 14:58:56 hagens Exp $ */ -/* $Source: /usr/argo/sys/netiso/RCS/clnp_raw.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_raw.c,v 1.1.1.1 1994/05/24 10:07:22 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_raw.c,v $ */ #include <sys/param.h> #include <sys/mbuf.h> diff --git a/sys/netiso/clnp_stat.h b/sys/netiso/clnp_stat.h index 07cd72c63e411..dff55adeb90c0 100644 --- a/sys/netiso/clnp_stat.h +++ b/sys/netiso/clnp_stat.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_stat.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_stat.h,v 5.1 89/02/09 16:20:42 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_stat.h,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_stat.h,v 1.1.1.1 1994/05/24 10:07:21 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_stat.h,v $ */ #ifndef __CLNP_STAT__ diff --git a/sys/netiso/clnp_subr.c b/sys/netiso/clnp_subr.c index c877811be1693..29a2ab1492170 100644 --- a/sys/netiso/clnp_subr.c +++ b/sys/netiso/clnp_subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: /var/src/sys/netiso/RCS/clnp_subr.c,v 5.1 89/02/09 16:20:46 hagens Exp $ */ -/* $Source: /var/src/sys/netiso/RCS/clnp_subr.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_subr.c,v 1.1.1.1 1994/05/24 10:07:20 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_subr.c,v $ */ #ifdef ISO diff --git a/sys/netiso/clnp_timer.c b/sys/netiso/clnp_timer.c index 718d5302f77c8..a6247395b686e 100644 --- a/sys/netiso/clnp_timer.c +++ b/sys/netiso/clnp_timer.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clnp_timer.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: clnp_timer.c,v 4.2 88/06/29 14:59:05 hagens Exp $ */ -/* $Source: /usr/argo/sys/netiso/RCS/clnp_timer.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/clnp_timer.c,v 1.1.1.1 1994/05/24 10:07:20 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/clnp_timer.c,v $ */ #include <sys/param.h> #include <sys/mbuf.h> diff --git a/sys/netiso/cltp_usrreq.c b/sys/netiso/cltp_usrreq.c index 93f8d1c398ee8..5b6f44080aae7 100644 --- a/sys/netiso/cltp_usrreq.c +++ b/sys/netiso/cltp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)cltp_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #ifndef CLTPOVAL_SRC /* XXX -- till files gets changed */ diff --git a/sys/netiso/cltp_var.h b/sys/netiso/cltp_var.h index b4e08f2c99b59..7c4948c4632bb 100644 --- a/sys/netiso/cltp_var.h +++ b/sys/netiso/cltp_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)cltp_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #define UD_TPDU_type 0x40 /* packet type */ diff --git a/sys/netiso/cons.h b/sys/netiso/cons.h index b0739de1eac09..5b0faedabda1a 100644 --- a/sys/netiso/cons.h +++ b/sys/netiso/cons.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)cons.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: cons.h,v 4.4 88/09/09 19:01:28 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/cons.h,v $ + * $Header: /home/ncvs/src/sys/netiso/cons.h,v 1.1.1.1 1994/05/24 10:07:18 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/cons.h,v $ * * interface between TP and CONS */ diff --git a/sys/netiso/cons_pcb.h b/sys/netiso/cons_pcb.h index b8adc373947c5..c132b560689e1 100644 --- a/sys/netiso/cons_pcb.h +++ b/sys/netiso/cons_pcb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)cons_pcb.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: cons_pcb.h,v 4.2 88/06/29 14:59:08 hagens Exp $ */ -/* $Source: /usr/argo/sys/netiso/RCS/cons_pcb.h,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/cons_pcb.h,v 1.1.1.1 1994/05/24 10:07:17 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/cons_pcb.h,v $ */ /* * protocol control block for the connection oriented network service diff --git a/sys/netiso/eonvar.h b/sys/netiso/eonvar.h index 93f99172f7495..946652622f0fc 100644 --- a/sys/netiso/eonvar.h +++ b/sys/netiso/eonvar.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)eonvar.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** diff --git a/sys/netiso/esis.c b/sys/netiso/esis.c index f4ade0f4fc9ef..03ecedca5a062 100644 --- a/sys/netiso/esis.c +++ b/sys/netiso/esis.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)esis.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** diff --git a/sys/netiso/esis.h b/sys/netiso/esis.h index 81dd74ac31043..317603604d114 100644 --- a/sys/netiso/esis.h +++ b/sys/netiso/esis.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)esis.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: esis.h,v 4.7 88/09/15 11:24:18 hagens Exp $ - * $Source: /usr/argo/sys/netiso/RCS/esis.h,v $ + * $Header: /home/ncvs/src/sys/netiso/esis.h,v 1.1.1.1 1994/05/24 10:07:15 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/esis.h,v $ */ #ifndef BYTE_ORDER diff --git a/sys/netiso/idrp_usrreq.c b/sys/netiso/idrp_usrreq.c index 3109936b41534..b5512312c3d0c 100644 --- a/sys/netiso/idrp_usrreq.c +++ b/sys/netiso/idrp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)idrp_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netiso/if_cons.c b/sys/netiso/if_cons.c index 7724b048be596..4878365197d4f 100644 --- a/sys/netiso/if_cons.c +++ b/sys/netiso/if_cons.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_cons.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: if_cons.c,v 4.7 88/08/11 15:52:55 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/if_cons.c,v $ + * $Header: /home/ncvs/src/sys/netiso/if_cons.c,v 1.1.1.1 1994/05/24 10:07:14 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/if_cons.c,v $ * * cons.c - Connection Oriented Network Service: * including support for a) user transport-level service, diff --git a/sys/netiso/if_eon.c b/sys/netiso/if_eon.c index 3c05133040a28..75e926482977c 100644 --- a/sys/netiso/if_eon.c +++ b/sys/netiso/if_eon.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)if_eon.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: if_eon.c,v 1.4 88/07/19 15:53:59 hagens Exp $ - * $Source: /usr/argo/sys/netiso/RCS/if_eon.c,v $ + * $Header: /home/ncvs/src/sys/netiso/if_eon.c,v 1.1.1.1 1994/05/24 10:07:13 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/if_eon.c,v $ * * EON rfc * Layer between IP and CLNL diff --git a/sys/netiso/iso.c b/sys/netiso/iso.c index cd64e6871528c..922947fc59e09 100644 --- a/sys/netiso/iso.c +++ b/sys/netiso/iso.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso.c 8.2 (Berkeley) 11/15/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: iso.c,v 4.11 88/09/19 14:58:35 root Exp $ - * $Source: /usr/argo/sys/netiso/RCS/iso.c,v $ + * $Header: /home/ncvs/src/sys/netiso/iso.c,v 1.1.1.1 1994/05/24 10:07:13 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/iso.c,v $ * * iso.c: miscellaneous routines to support the iso address family */ diff --git a/sys/netiso/iso.h b/sys/netiso/iso.h index 9237e6aaa733b..ad5043d9d5740 100644 --- a/sys/netiso/iso.h +++ b/sys/netiso/iso.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: iso.h,v 4.9 88/09/11 18:06:38 hagens Exp $ */ -/* $Source: /usr/argo/sys/netiso/RCS/iso.h,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/iso.h,v 1.1.1.1 1994/05/24 10:07:12 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/iso.h,v $ */ #ifndef __ISO__ #define __ISO__ diff --git a/sys/netiso/iso_chksum.c b/sys/netiso/iso_chksum.c index 5b1aae59e16cd..c95a9b7fed428 100644 --- a/sys/netiso/iso_chksum.c +++ b/sys/netiso/iso_chksum.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_chksum.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: iso_chksum.c,v 4.7 88/07/29 15:31:26 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/iso_chksum.c,v $ + * $Header: /home/ncvs/src/sys/netiso/iso_chksum.c,v 1.1.1.1 1994/05/24 10:07:12 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/iso_chksum.c,v $ * * ISO CHECKSUM * diff --git a/sys/netiso/iso_errno.h b/sys/netiso/iso_errno.h index 0d75589ca0eb8..3516908c53cfc 100644 --- a/sys/netiso/iso_errno.h +++ b/sys/netiso/iso_errno.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_errno.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** diff --git a/sys/netiso/iso_pcb.c b/sys/netiso/iso_pcb.c index 0b50c603422f3..ad91ff41f7c04 100644 --- a/sys/netiso/iso_pcb.c +++ b/sys/netiso/iso_pcb.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_pcb.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: iso_pcb.c,v 4.5 88/06/29 14:59:56 hagens Exp $ - * $Source: /usr/argo/sys/netiso/RCS/iso_pcb.c,v $ + * $Header: /home/ncvs/src/sys/netiso/iso_pcb.c,v 1.1.1.1 1994/05/24 10:07:10 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/iso_pcb.c,v $ * * Iso address family net-layer(s) pcb stuff. NEH 1/29/87 */ diff --git a/sys/netiso/iso_pcb.h b/sys/netiso/iso_pcb.h index aad76bcc065c3..015d578c3003f 100644 --- a/sys/netiso/iso_pcb.h +++ b/sys/netiso/iso_pcb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_pcb.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: iso_pcb.h,v 4.3 88/06/29 15:00:01 hagens Exp $ */ -/* $Source: /usr/argo/sys/netiso/RCS/iso_pcb.h,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/iso_pcb.h,v 1.1.1.1 1994/05/24 10:07:10 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/iso_pcb.h,v $ */ #define MAXX25CRUDLEN 16 /* 16 bytes of call request user data */ diff --git a/sys/netiso/iso_proto.c b/sys/netiso/iso_proto.c index 59575c7513bf8..6706e570a652b 100644 --- a/sys/netiso/iso_proto.c +++ b/sys/netiso/iso_proto.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_proto.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: iso_proto.c,v 4.4 88/09/08 08:38:42 hagens Exp $ - * $Source: /usr/argo/sys/netiso/RCS/iso_proto.c,v $ +/* $Header: /home/ncvs/src/sys/netiso/iso_proto.c,v 1.1.1.1 1994/05/24 10:07:09 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/iso_proto.c,v $ * * iso_proto.c : protocol switch tables in the ISO domain * diff --git a/sys/netiso/iso_snpac.c b/sys/netiso/iso_snpac.c index 2473ae7a12d3b..5ade7aea8e40a 100644 --- a/sys/netiso/iso_snpac.c +++ b/sys/netiso/iso_snpac.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_snpac.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: iso_snpac.c,v 1.8 88/09/19 13:51:36 hagens Exp $ */ -/* $Source: /usr/argo/sys/netiso/RCS/iso_snpac.c,v $ */ +/* $Header: /home/ncvs/src/sys/netiso/iso_snpac.c,v 1.1.1.1 1994/05/24 10:07:07 rgrimes Exp $ */ +/* $Source: /home/ncvs/src/sys/netiso/iso_snpac.c,v $ */ #ifdef ISO diff --git a/sys/netiso/iso_snpac.h b/sys/netiso/iso_snpac.h index 105e8dd11d672..3bc1114287f05 100644 --- a/sys/netiso/iso_snpac.h +++ b/sys/netiso/iso_snpac.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_snpac.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** diff --git a/sys/netiso/iso_var.h b/sys/netiso/iso_var.h index 946aeea93fe8b..b470db105d606 100644 --- a/sys/netiso/iso_var.h +++ b/sys/netiso/iso_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)iso_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -59,8 +60,8 @@ SOFTWARE. /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ -/* $Header: iso_var.h,v 4.2 88/06/29 15:00:08 hagens Exp $ - * $Source: /usr/argo/sys/netiso/RCS/iso_var.h,v $ +/* $Header: /home/ncvs/src/sys/netiso/iso_var.h,v 1.1.1.1 1994/05/24 10:07:03 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/iso_var.h,v $ */ /* diff --git a/sys/netiso/tp_astring.c b/sys/netiso/tp_astring.c index af08cebbc869f..5bfa711151026 100644 --- a/sys/netiso/tp_astring.c +++ b/sys/netiso/tp_astring.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_astring.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ char *tp_sstring[] = { diff --git a/sys/netiso/tp_clnp.h b/sys/netiso/tp_clnp.h index 81a7cffc13eaa..aecca194500fc 100644 --- a/sys/netiso/tp_clnp.h +++ b/sys/netiso/tp_clnp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_clnp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_clnp.h,v 5.1 88/10/12 12:16:36 root Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_clnp.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_clnp.h,v 1.1.1.1 1994/05/24 10:07:00 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_clnp.h,v $ * * AF_ISO net-dependent structures and include files * diff --git a/sys/netiso/tp_cons.c b/sys/netiso/tp_cons.c index 797ee9ef829e6..b40cd06cf7e6a 100644 --- a/sys/netiso/tp_cons.c +++ b/sys/netiso/tp_cons.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_cons.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -61,8 +62,8 @@ SOFTWARE. */ /* * ARGO TP - * $Header: tp_cons.c,v 5.6 88/11/18 17:27:13 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_cons.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_cons.c,v 1.1.1.1 1994/05/24 10:06:58 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_cons.c,v $ * * Here is where you find the iso- and cons-dependent code. We've tried * keep all net-level and (primarily) address-family-dependent stuff diff --git a/sys/netiso/tp_driver.c b/sys/netiso/tp_driver.c index 586ef4e2ade86..ead2c892906ae 100644 --- a/sys/netiso/tp_driver.c +++ b/sys/netiso/tp_driver.c @@ -1,8 +1,6 @@ -/* $Header$ */ -/* $Source$ */ -#ifndef lint -static char *rcsid = "$Header/**/$"; -#endif lint +/* + * $Id$ + */ #define _XEBEC_PG static #include "tp_states.h" diff --git a/sys/netiso/tp_emit.c b/sys/netiso/tp_emit.c index 16ed5bc7b7b2b..0c9a831ed58be 100644 --- a/sys/netiso/tp_emit.c +++ b/sys/netiso/tp_emit.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_emit.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_emit.c,v 5.5 88/11/18 17:27:20 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_emit.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_emit.c,v 1.1.1.1 1994/05/24 10:06:56 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_emit.c,v $ * * This file contains tp_emit() and tp_error_emit(), which * form TPDUs and hand them to ip. diff --git a/sys/netiso/tp_events.h b/sys/netiso/tp_events.h index 48222830a0d23..6837904358294 100644 --- a/sys/netiso/tp_events.h +++ b/sys/netiso/tp_events.h @@ -1,5 +1,6 @@ -/* $Header$ */ -/* $Source$ */ +/* + * $Id$ + */ struct tp_event { int ev_number; struct timeval e_time; diff --git a/sys/netiso/tp_inet.c b/sys/netiso/tp_inet.c index fb013718ba24f..f4fc35f680c76 100644 --- a/sys/netiso/tp_inet.c +++ b/sys/netiso/tp_inet.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_inet.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -61,8 +62,8 @@ SOFTWARE. */ /* * ARGO TP - * $Header: tp_inet.c,v 5.3 88/11/18 17:27:29 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_inet.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_inet.c,v 1.1.1.1 1994/05/24 10:06:55 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_inet.c,v $ * * Here is where you find the inet-dependent code. We've tried * keep all net-level and (primarily) address-family-dependent stuff diff --git a/sys/netiso/tp_input.c b/sys/netiso/tp_input.c index a071a5d4addf4..1eac4061b3279 100644 --- a/sys/netiso/tp_input.c +++ b/sys/netiso/tp_input.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_input.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_input.c,v 5.6 88/11/18 17:27:38 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_input.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_input.c,v 1.1.1.1 1994/05/24 10:06:54 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_input.c,v $ * * tp_input() gets an mbuf chain from ip. Actually, not directly * from ip, because ip calls a net-level routine that strips off diff --git a/sys/netiso/tp_ip.h b/sys/netiso/tp_ip.h index f2777676e1339..63a50ccdef801 100644 --- a/sys/netiso/tp_ip.h +++ b/sys/netiso/tp_ip.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_ip.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_ip.h,v 5.1 88/10/12 12:19:47 root Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_ip.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_ip.h,v 1.1.1.1 1994/05/24 10:06:53 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_ip.h,v $ * * internet IP-dependent structures and include files * diff --git a/sys/netiso/tp_iso.c b/sys/netiso/tp_iso.c index 1cf67f86648f9..21f3f7db3138c 100644 --- a/sys/netiso/tp_iso.c +++ b/sys/netiso/tp_iso.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_iso.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -61,8 +62,8 @@ SOFTWARE. */ /* * ARGO TP - * $Header: /var/src/sys/netiso/RCS/tp_iso.c,v 5.1 89/02/09 16:20:51 hagens Exp $ - * $Source: /var/src/sys/netiso/RCS/tp_iso.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_iso.c,v 1.1.1.1 1994/05/24 10:06:52 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_iso.c,v $ * * Here is where you find the iso-dependent code. We've tried * keep all net-level and (primarily) address-family-dependent stuff diff --git a/sys/netiso/tp_meas.c b/sys/netiso/tp_meas.c index f8bbbe6dceb6d..460403e0eab4c 100644 --- a/sys/netiso/tp_meas.c +++ b/sys/netiso/tp_meas.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_meas.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -60,8 +61,8 @@ SOFTWARE. * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* - * $Header: tp_meas.c,v 5.2 88/11/18 17:28:04 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_meas.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_meas.c,v 1.1.1.1 1994/05/24 10:06:52 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_meas.c,v $ * * tp_meas.c : create a performance measurement event * in the circular buffer tp_Meas[] diff --git a/sys/netiso/tp_meas.h b/sys/netiso/tp_meas.h index 10ef93d350b61..ab61124cb872d 100644 --- a/sys/netiso/tp_meas.h +++ b/sys/netiso/tp_meas.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_meas.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** diff --git a/sys/netiso/tp_output.c b/sys/netiso/tp_output.c index cdd7c4fe76b3b..35ba0bed1decf 100644 --- a/sys/netiso/tp_output.c +++ b/sys/netiso/tp_output.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_output.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_output.c,v 5.4 88/11/18 17:28:08 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_output.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_output.c,v 1.1.1.1 1994/05/24 10:06:50 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_output.c,v $ * * In here is tp_ctloutput(), the guy called by [sg]etsockopt(), */ diff --git a/sys/netiso/tp_param.h b/sys/netiso/tp_param.h index f1862a2439241..16d4153d68086 100644 --- a/sys/netiso/tp_param.h +++ b/sys/netiso/tp_param.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_param.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_param.h,v 5.3 88/11/18 17:28:18 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_param.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_param.h,v 1.1.1.1 1994/05/24 10:06:50 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_param.h,v $ * */ diff --git a/sys/netiso/tp_pcb.c b/sys/netiso/tp_pcb.c index de345c1e377d6..f35761b9ac0ac 100644 --- a/sys/netiso/tp_pcb.c +++ b/sys/netiso/tp_pcb.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_pcb.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_pcb.c,v 5.4 88/11/18 17:28:24 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_pcb.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_pcb.c,v 1.1.1.1 1994/05/24 10:06:49 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_pcb.c,v $ * * * This is the initialization and cleanup stuff - diff --git a/sys/netiso/tp_pcb.h b/sys/netiso/tp_pcb.h index 0353cb47b2058..86e414dc458b9 100644 --- a/sys/netiso/tp_pcb.h +++ b/sys/netiso/tp_pcb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_pcb.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_pcb.h,v 5.2 88/11/18 17:09:32 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_pcb.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_pcb.h,v 1.1.1.1 1994/05/24 10:06:49 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_pcb.h,v $ * * * This file defines the transport protocol control block (tpcb). diff --git a/sys/netiso/tp_seq.h b/sys/netiso/tp_seq.h index f14e5ae7c7d84..046f38b463d85 100644 --- a/sys/netiso/tp_seq.h +++ b/sys/netiso/tp_seq.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_seq.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_seq.h,v 5.1 88/10/12 12:20:59 root Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_seq.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_seq.h,v 1.1.1.1 1994/05/24 10:06:48 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_seq.h,v $ * * These macros perform sequence number arithmetic modulo (2**7 or 2**31). * The relevant fields in the tpcb are: diff --git a/sys/netiso/tp_stat.h b/sys/netiso/tp_stat.h index bf6e1a5e1244e..c18869de4000e 100644 --- a/sys/netiso/tp_stat.h +++ b/sys/netiso/tp_stat.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_stat.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_stat.h,v 5.4 88/11/18 17:28:38 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_stat.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_stat.h,v 1.1.1.1 1994/05/24 10:06:47 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_stat.h,v $ * * Here are the data structures in which the global * statistics(counters) are gathered. diff --git a/sys/netiso/tp_states.h b/sys/netiso/tp_states.h index ac6213a64d726..d3d015645faf7 100644 --- a/sys/netiso/tp_states.h +++ b/sys/netiso/tp_states.h @@ -1,6 +1,6 @@ -/* $Header$ */ -/* $Source$ */ -#define ST_ERROR 0x0 +/* + * $Id$ + */ #define TP_CLOSED 0x1 #define TP_CRSENT 0x2 #define TP_AKWAIT 0x3 diff --git a/sys/netiso/tp_subr.c b/sys/netiso/tp_subr.c index 1259ee412532d..7b92db74e5317 100644 --- a/sys/netiso/tp_subr.c +++ b/sys/netiso/tp_subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_subr.c,v 5.3 88/11/18 17:28:43 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_subr.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_subr.c,v 1.1.1.1 1994/05/24 10:06:46 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_subr.c,v $ * * The main work of data transfer is done here. * These routines are called from tp.trans. diff --git a/sys/netiso/tp_subr2.c b/sys/netiso/tp_subr2.c index 60c7ce2a50b9c..a0c59dcec7073 100644 --- a/sys/netiso/tp_subr2.c +++ b/sys/netiso/tp_subr2.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_subr2.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_subr2.c,v 5.5 88/11/18 17:28:55 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_subr2.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_subr2.c,v 1.1.1.1 1994/05/24 10:06:45 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_subr2.c,v $ * * Some auxiliary routines: * tp_protocol_error: required by xebec- called when a combo of state, diff --git a/sys/netiso/tp_timer.c b/sys/netiso/tp_timer.c index b3a0be3a94530..34fa0cc3b7f37 100644 --- a/sys/netiso/tp_timer.c +++ b/sys/netiso/tp_timer.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_timer.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_timer.c,v 5.2 88/11/18 17:29:07 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_timer.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_timer.c,v 1.1.1.1 1994/05/24 10:06:44 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_timer.c,v $ * */ diff --git a/sys/netiso/tp_timer.h b/sys/netiso/tp_timer.h index a6f7735586b97..966745bdc934e 100644 --- a/sys/netiso/tp_timer.h +++ b/sys/netiso/tp_timer.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_timer.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_timer.h,v 5.1 88/10/12 12:21:41 root Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_timer.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_timer.h,v 1.1.1.1 1994/05/24 10:06:43 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_timer.h,v $ * * ARGO TP * The callout structures used by the tp timers. diff --git a/sys/netiso/tp_tpdu.h b/sys/netiso/tp_tpdu.h index 15f130d1703a1..5779d5dc65934 100644 --- a/sys/netiso/tp_tpdu.h +++ b/sys/netiso/tp_tpdu.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_tpdu.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_tpdu.h,v 4.4 88/07/26 16:45:40 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_tpdu.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_tpdu.h,v 1.1.1.1 1994/05/24 10:06:43 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_tpdu.h,v $ * * This ghastly set of macros makes it possible to * refer to tpdu structures without going mad. diff --git a/sys/netiso/tp_trace.c b/sys/netiso/tp_trace.c index 115597bf47205..1f80e84f84132 100644 --- a/sys/netiso/tp_trace.c +++ b/sys/netiso/tp_trace.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_trace.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_trace.c,v 5.3 88/11/18 17:29:14 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_trace.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_trace.c,v 1.1.1.1 1994/05/24 10:06:42 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_trace.c,v $ * * The whole protocol trace module. * We keep a circular buffer of trace structures, which are big diff --git a/sys/netiso/tp_trace.h b/sys/netiso/tp_trace.h index 885730549e58f..b6b36e2449615 100644 --- a/sys/netiso/tp_trace.h +++ b/sys/netiso/tp_trace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_trace.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_trace.h,v 5.1 88/10/12 12:21:51 root Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_trace.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_trace.h,v 1.1.1.1 1994/05/24 10:06:42 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_trace.h,v $ * * * Definitions needed for the protocol trace mechanism. diff --git a/sys/netiso/tp_user.h b/sys/netiso/tp_user.h index b81491b76501c..557d12ad1e715 100644 --- a/sys/netiso/tp_user.h +++ b/sys/netiso/tp_user.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_user.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_user.h,v 5.2 88/11/04 15:44:44 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_user.h,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_user.h,v 1.1.1.1 1994/05/24 10:06:41 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_user.h,v $ * * These are the values a real-live user ;-) needs. */ diff --git a/sys/netiso/tp_usrreq.c b/sys/netiso/tp_usrreq.c index 8060c947f544c..898b3606c5361 100644 --- a/sys/netiso/tp_usrreq.c +++ b/sys/netiso/tp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tp_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /*********************************************************** @@ -62,8 +63,8 @@ SOFTWARE. /* * ARGO TP * - * $Header: tp_usrreq.c,v 5.4 88/11/18 17:29:18 nhall Exp $ - * $Source: /usr/argo/sys/netiso/RCS/tp_usrreq.c,v $ + * $Header: /home/ncvs/src/sys/netiso/tp_usrreq.c,v 1.1.1.1 1994/05/24 10:06:40 rgrimes Exp $ + * $Source: /home/ncvs/src/sys/netiso/tp_usrreq.c,v $ * * tp_usrreq(), the fellow that gets called from most of the socket code. * Pretty straighforward. diff --git a/sys/netiso/tuba_subr.c b/sys/netiso/tuba_subr.c index d346927255c25..b7131ad3e2cbf 100644 --- a/sys/netiso/tuba_subr.c +++ b/sys/netiso/tuba_subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tuba_subr.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netiso/tuba_table.c b/sys/netiso/tuba_table.c index a1bf5f98de0fb..0b0a977bf5a06 100644 --- a/sys/netiso/tuba_table.c +++ b/sys/netiso/tuba_table.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tuba_table.c 8.2 (Berkeley) 11/15/93 + * $Id$ */ #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/netiso/tuba_table.h b/sys/netiso/tuba_table.h index 6be8afaf523c2..501544625a52f 100644 --- a/sys/netiso/tuba_table.h +++ b/sys/netiso/tuba_table.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tuba_table.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ struct tuba_cache { diff --git a/sys/netiso/tuba_usrreq.c b/sys/netiso/tuba_usrreq.c index 2d9211707a459..e1e922ab65268 100644 --- a/sys/netiso/tuba_usrreq.c +++ b/sys/netiso/tuba_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tuba_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/idp.h b/sys/netns/idp.h index 254208dfad80f..b3df648afab8d 100644 --- a/sys/netns/idp.h +++ b/sys/netns/idp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)idp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/idp_usrreq.c b/sys/netns/idp_usrreq.c index b548a12574b39..31eb5e8b0cef5 100644 --- a/sys/netns/idp_usrreq.c +++ b/sys/netns/idp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)idp_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/idp_var.h b/sys/netns/idp_var.h index fc9a4f45d818a..c1e52ecd6643f 100644 --- a/sys/netns/idp_var.h +++ b/sys/netns/idp_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)idp_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/ns.c b/sys/netns/ns.c index 8b76543fce36e..e465c9375026b 100644 --- a/sys/netns/ns.c +++ b/sys/netns/ns.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns.c 8.2 (Berkeley) 11/15/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/ns.h b/sys/netns/ns.h index cf51f0047e921..69af051c36650 100644 --- a/sys/netns/ns.h +++ b/sys/netns/ns.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/ns_cksum.c b/sys/netns/ns_cksum.c index 52eba8bce8161..617fb2c0f2eb3 100644 --- a/sys/netns/ns_cksum.c +++ b/sys/netns/ns_cksum.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_cksum.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/ns_error.c b/sys/netns/ns_error.c index 03473a2368056..5626166093428 100644 --- a/sys/netns/ns_error.c +++ b/sys/netns/ns_error.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_error.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/ns_error.h b/sys/netns/ns_error.h index 992911f1552ce..628de176372af 100644 --- a/sys/netns/ns_error.h +++ b/sys/netns/ns_error.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_error.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/ns_if.h b/sys/netns/ns_if.h index 3abb284a1dd7f..f4f9f64d84f8d 100644 --- a/sys/netns/ns_if.h +++ b/sys/netns/ns_if.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_if.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/ns_input.c b/sys/netns/ns_input.c index 7a6e1babc7c87..91a5b31c9f191 100644 --- a/sys/netns/ns_input.c +++ b/sys/netns/ns_input.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_input.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/ns_ip.c b/sys/netns/ns_ip.c index 09deb8fe7c432..c10af1f142b5b 100644 --- a/sys/netns/ns_ip.c +++ b/sys/netns/ns_ip.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_ip.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/ns_output.c b/sys/netns/ns_output.c index 4c9f364f1eac6..8b044896d4ea3 100644 --- a/sys/netns/ns_output.c +++ b/sys/netns/ns_output.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_output.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/ns_pcb.c b/sys/netns/ns_pcb.c index ca88472d594f8..155d6ba1734a9 100644 --- a/sys/netns/ns_pcb.c +++ b/sys/netns/ns_pcb.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_pcb.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/ns_pcb.h b/sys/netns/ns_pcb.h index 68cf744f738b0..f63c31be2b35f 100644 --- a/sys/netns/ns_pcb.h +++ b/sys/netns/ns_pcb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_pcb.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/ns_proto.c b/sys/netns/ns_proto.c index fc9f8238c5513..a19e8cbc42029 100644 --- a/sys/netns/ns_proto.c +++ b/sys/netns/ns_proto.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ns_proto.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/sp.h b/sys/netns/sp.h index b55dac26039b3..fb84740289a94 100644 --- a/sys/netns/sp.h +++ b/sys/netns/sp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)sp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/spidp.h b/sys/netns/spidp.h index 332df5be2353e..19c6bfaa52ecc 100644 --- a/sys/netns/spidp.h +++ b/sys/netns/spidp.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spidp.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/spp_debug.c b/sys/netns/spp_debug.c index eaa1d023f8795..f979a1ec9b89a 100644 --- a/sys/netns/spp_debug.c +++ b/sys/netns/spp_debug.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_debug.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/spp_debug.h b/sys/netns/spp_debug.h index 8dfe24220690a..6ad091ddaa71e 100644 --- a/sys/netns/spp_debug.h +++ b/sys/netns/spp_debug.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_debug.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ struct spp_debug { diff --git a/sys/netns/spp_timer.h b/sys/netns/spp_timer.h index f84e3282a2349..0a02fef80dc29 100644 --- a/sys/netns/spp_timer.h +++ b/sys/netns/spp_timer.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_timer.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/netns/spp_usrreq.c b/sys/netns/spp_usrreq.c index 062bbec5fab91..08aee83d626e1 100644 --- a/sys/netns/spp_usrreq.c +++ b/sys/netns/spp_usrreq.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_usrreq.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/netns/spp_var.h b/sys/netns/spp_var.h index 0d44f63904f98..cc4fbf4687d58 100644 --- a/sys/netns/spp_var.h +++ b/sys/netns/spp_var.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_var.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfs.h b/sys/nfs/nfs.h index 261fd42657a75..82fa6ca56d69c 100644 --- a/sys/nfs/nfs.h +++ b/sys/nfs/nfs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfs_bio.c b/sys/nfs/nfs_bio.c index 9ef81fe71999b..893aabf91782f 100644 --- a/sys/nfs/nfs_bio.c +++ b/sys/nfs/nfs_bio.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_bio.c 8.5 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfs/nfs_common.c b/sys/nfs/nfs_common.c index d17cde79f60e7..f4e9cbfa395df 100644 --- a/sys/nfs/nfs_common.c +++ b/sys/nfs/nfs_common.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/nfs/nfs_common.h b/sys/nfs/nfs_common.h index 879db36005778..4a849db66ae30 100644 --- a/sys/nfs/nfs_common.h +++ b/sys/nfs/nfs_common.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.1 (Berkeley) 6/16/93 + * $Id$ */ /* diff --git a/sys/nfs/nfs_node.c b/sys/nfs/nfs_node.c index 9c70c535820d3..2054fdf3cb170 100644 --- a/sys/nfs/nfs_node.c +++ b/sys/nfs/nfs_node.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_node.c 8.2 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfs/nfs_nqlease.c b/sys/nfs/nfs_nqlease.c index 7ba69e5b85914..ba388adb78268 100644 --- a/sys/nfs/nfs_nqlease.c +++ b/sys/nfs/nfs_nqlease.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_nqlease.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index 32b0da20dd2b6..4ae812028f27d 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_serv.c 8.3 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c index c00f7d06cc730..a7b3dfc66acc6 100644 --- a/sys/nfs/nfs_socket.c +++ b/sys/nfs/nfs_socket.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.3 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/nfs/nfs_srvcache.c b/sys/nfs/nfs_srvcache.c index 45bfe1bb042f6..5cdd84c499470 100644 --- a/sys/nfs/nfs_srvcache.c +++ b/sys/nfs/nfs_srvcache.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_srvcache.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfs_subs.c b/sys/nfs/nfs_subs.c index d17cde79f60e7..f4e9cbfa395df 100644 --- a/sys/nfs/nfs_subs.c +++ b/sys/nfs/nfs_subs.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/nfs/nfs_syscalls.c b/sys/nfs/nfs_syscalls.c index b00a225de3400..ef134f691d9fc 100644 --- a/sys/nfs/nfs_syscalls.c +++ b/sys/nfs/nfs_syscalls.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_syscalls.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 1f1867606892c..d806e26a53304 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfs/nfs_vnops.c b/sys/nfs/nfs_vnops.c index 9e76ded984347..6d7eb922aa444 100644 --- a/sys/nfs/nfs_vnops.c +++ b/sys/nfs/nfs_vnops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vnops.c 8.5 (Berkeley) 2/13/94 + * $Id$ */ /* diff --git a/sys/nfs/nfsdiskless.h b/sys/nfs/nfsdiskless.h index 74e6b7bca4385..7fed901baf8f1 100644 --- a/sys/nfs/nfsdiskless.h +++ b/sys/nfs/nfsdiskless.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsdiskless.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfsm_subs.h b/sys/nfs/nfsm_subs.h index 879db36005778..4a849db66ae30 100644 --- a/sys/nfs/nfsm_subs.h +++ b/sys/nfs/nfsm_subs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.1 (Berkeley) 6/16/93 + * $Id$ */ /* diff --git a/sys/nfs/nfsmount.h b/sys/nfs/nfsmount.h index 4d74acb38a54d..5cb1cc278c489 100644 --- a/sys/nfs/nfsmount.h +++ b/sys/nfs/nfsmount.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfsnode.h b/sys/nfs/nfsnode.h index f5fee5bf2f3af..0fe5d48d5fbdc 100644 --- a/sys/nfs/nfsnode.h +++ b/sys/nfs/nfsnode.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsnode.h 8.4 (Berkeley) 2/13/94 + * $Id$ */ /* diff --git a/sys/nfs/nfsrtt.h b/sys/nfs/nfsrtt.h index 0d23880019b97..f0be0e02f2d0b 100644 --- a/sys/nfs/nfsrtt.h +++ b/sys/nfs/nfsrtt.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrtt.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfsrvcache.h b/sys/nfs/nfsrvcache.h index 26da2c275df64..8fa2246348aa7 100644 --- a/sys/nfs/nfsrvcache.h +++ b/sys/nfs/nfsrvcache.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrvcache.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nfsv2.h b/sys/nfs/nfsv2.h index e9d2985efacd6..0b1d347bae798 100644 --- a/sys/nfs/nfsv2.h +++ b/sys/nfs/nfsv2.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsv2.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/nqnfs.h b/sys/nfs/nqnfs.h index 730741a4137b3..94193d084678b 100644 --- a/sys/nfs/nqnfs.h +++ b/sys/nfs/nqnfs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nqnfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/rpcv2.h b/sys/nfs/rpcv2.h index 9c793a7f87584..67a1f6920536b 100644 --- a/sys/nfs/rpcv2.h +++ b/sys/nfs/rpcv2.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)rpcv2.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfs/xdr_subs.h b/sys/nfs/xdr_subs.h index c2aa4f3f34342..98a1c01a57408 100644 --- a/sys/nfs/xdr_subs.h +++ b/sys/nfs/xdr_subs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)xdr_subs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsclient/nfs.h b/sys/nfsclient/nfs.h index 261fd42657a75..82fa6ca56d69c 100644 --- a/sys/nfsclient/nfs.h +++ b/sys/nfsclient/nfs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsclient/nfs_bio.c b/sys/nfsclient/nfs_bio.c index 9ef81fe71999b..893aabf91782f 100644 --- a/sys/nfsclient/nfs_bio.c +++ b/sys/nfsclient/nfs_bio.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_bio.c 8.5 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfsclient/nfs_nfsiod.c b/sys/nfsclient/nfs_nfsiod.c index b00a225de3400..ef134f691d9fc 100644 --- a/sys/nfsclient/nfs_nfsiod.c +++ b/sys/nfsclient/nfs_nfsiod.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_syscalls.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfsclient/nfs_node.c b/sys/nfsclient/nfs_node.c index 9c70c535820d3..2054fdf3cb170 100644 --- a/sys/nfsclient/nfs_node.c +++ b/sys/nfsclient/nfs_node.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_node.c 8.2 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfsclient/nfs_socket.c b/sys/nfsclient/nfs_socket.c index c00f7d06cc730..a7b3dfc66acc6 100644 --- a/sys/nfsclient/nfs_socket.c +++ b/sys/nfsclient/nfs_socket.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.3 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/nfsclient/nfs_subs.c b/sys/nfsclient/nfs_subs.c index d17cde79f60e7..f4e9cbfa395df 100644 --- a/sys/nfsclient/nfs_subs.c +++ b/sys/nfsclient/nfs_subs.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 1f1867606892c..d806e26a53304 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c index 9e76ded984347..6d7eb922aa444 100644 --- a/sys/nfsclient/nfs_vnops.c +++ b/sys/nfsclient/nfs_vnops.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vnops.c 8.5 (Berkeley) 2/13/94 + * $Id$ */ /* diff --git a/sys/nfsclient/nfsargs.h b/sys/nfsclient/nfsargs.h index 261fd42657a75..82fa6ca56d69c 100644 --- a/sys/nfsclient/nfsargs.h +++ b/sys/nfsclient/nfsargs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsclient/nfsdiskless.h b/sys/nfsclient/nfsdiskless.h index 74e6b7bca4385..7fed901baf8f1 100644 --- a/sys/nfsclient/nfsdiskless.h +++ b/sys/nfsclient/nfsdiskless.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsdiskless.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsclient/nfsm_subs.h b/sys/nfsclient/nfsm_subs.h index 879db36005778..4a849db66ae30 100644 --- a/sys/nfsclient/nfsm_subs.h +++ b/sys/nfsclient/nfsm_subs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.1 (Berkeley) 6/16/93 + * $Id$ */ /* diff --git a/sys/nfsclient/nfsmount.h b/sys/nfsclient/nfsmount.h index 4d74acb38a54d..5cb1cc278c489 100644 --- a/sys/nfsclient/nfsmount.h +++ b/sys/nfsclient/nfsmount.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsclient/nfsnode.h b/sys/nfsclient/nfsnode.h index f5fee5bf2f3af..0fe5d48d5fbdc 100644 --- a/sys/nfsclient/nfsnode.h +++ b/sys/nfsclient/nfsnode.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsnode.h 8.4 (Berkeley) 2/13/94 + * $Id$ */ /* diff --git a/sys/nfsclient/nfsstats.h b/sys/nfsclient/nfsstats.h index 261fd42657a75..82fa6ca56d69c 100644 --- a/sys/nfsclient/nfsstats.h +++ b/sys/nfsclient/nfsstats.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h index 261fd42657a75..82fa6ca56d69c 100644 --- a/sys/nfsserver/nfs.h +++ b/sys/nfsserver/nfs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c index 32b0da20dd2b6..4ae812028f27d 100644 --- a/sys/nfsserver/nfs_serv.c +++ b/sys/nfsserver/nfs_serv.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_serv.c 8.3 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/nfsserver/nfs_srvcache.c b/sys/nfsserver/nfs_srvcache.c index 45bfe1bb042f6..5cdd84c499470 100644 --- a/sys/nfsserver/nfs_srvcache.c +++ b/sys/nfsserver/nfs_srvcache.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_srvcache.c 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsserver/nfs_srvsock.c b/sys/nfsserver/nfs_srvsock.c index c00f7d06cc730..a7b3dfc66acc6 100644 --- a/sys/nfsserver/nfs_srvsock.c +++ b/sys/nfsserver/nfs_srvsock.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.3 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/nfsserver/nfs_srvsubs.c b/sys/nfsserver/nfs_srvsubs.c index d17cde79f60e7..f4e9cbfa395df 100644 --- a/sys/nfsserver/nfs_srvsubs.c +++ b/sys/nfsserver/nfs_srvsubs.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/nfsserver/nfs_syscalls.c b/sys/nfsserver/nfs_syscalls.c index b00a225de3400..ef134f691d9fc 100644 --- a/sys/nfsserver/nfs_syscalls.c +++ b/sys/nfsserver/nfs_syscalls.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_syscalls.c 8.3 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/nfsserver/nfsm_subs.h b/sys/nfsserver/nfsm_subs.h index 879db36005778..4a849db66ae30 100644 --- a/sys/nfsserver/nfsm_subs.h +++ b/sys/nfsserver/nfsm_subs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.1 (Berkeley) 6/16/93 + * $Id$ */ /* diff --git a/sys/nfsserver/nfsrvcache.h b/sys/nfsserver/nfsrvcache.h index 26da2c275df64..8fa2246348aa7 100644 --- a/sys/nfsserver/nfsrvcache.h +++ b/sys/nfsserver/nfsrvcache.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrvcache.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/nfsserver/nfsrvstats.h b/sys/nfsserver/nfsrvstats.h index 261fd42657a75..82fa6ca56d69c 100644 --- a/sys/nfsserver/nfsrvstats.h +++ b/sys/nfsserver/nfsrvstats.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ /* diff --git a/sys/powerpc/include/_limits.h b/sys/powerpc/include/_limits.h index e507313a046bd..3ae9518597dce 100644 --- a/sys/powerpc/include/_limits.h +++ b/sys/powerpc/include/_limits.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/powerpc/include/limits.h b/sys/powerpc/include/limits.h index e507313a046bd..3ae9518597dce 100644 --- a/sys/powerpc/include/limits.h +++ b/sys/powerpc/include/limits.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)limits.h 8.3 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _MACHINE_LIMITS_H_ diff --git a/sys/powerpc/include/ptrace.h b/sys/powerpc/include/ptrace.h index bfcc55f7aab10..0892b83e2606c 100644 --- a/sys/powerpc/include/ptrace.h +++ b/sys/powerpc/include/ptrace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/scsi/scsi_all.h b/sys/scsi/scsi_all.h index 2e7bdcff7e59f..ad05f0f5295bc 100644 --- a/sys/scsi/scsi_all.h +++ b/sys/scsi/scsi_all.h @@ -1,8 +1,4 @@ /* - * SCSI general interface description - */ - -/* * Largely written by Julian Elischer (julian@tfs.com) * for TRW Financial Systems. * @@ -18,7 +14,11 @@ * * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * - * $Id: scsi_all.h,v 2.0 93/10/06 21:10:28 julian Exp Locker: julian $ + * $Id: scsi_all.h,v 1.6 1993/11/18 05:02:49 rgrimes Exp $ + */ + +/* + * SCSI general interface description */ #ifndef _SCSI_SCSI_ALL_H diff --git a/sys/scsi/scsi_ioctl.c b/sys/scsi/scsi_ioctl.c index d35ad2de53d6b..0cc137ad827ab 100644 --- a/sys/scsi/scsi_ioctl.c +++ b/sys/scsi/scsi_ioctl.c @@ -5,6 +5,7 @@ * Berkeley style copyright. * * + * $Id$ */ #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/scsi/st.c b/sys/scsi/st.c index b72cb762054e6..65a3109d1a666 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -12,22 +12,12 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * - * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE - * -------------------- ----- ---------------------- - * CURRENT PATCH LEVEL: 1 00098 - * -------------------- ----- ---------------------- - * - * 16 Feb 93 Julian Elischer ADDED for SCSI system - * 1.15 is the last version to support MACH and OSF/1 + * $Id$ */ -/* $Revision: 1.15 $ */ /* * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * major changes by Julian Elischer (julian@jules.dialix.oz.au) May 1993 - * - * $Id: st.c,v 1.15 1994/01/29 10:30:41 rgrimes Exp $ */ /* diff --git a/sys/sys/_sigset.h b/sys/sys/_sigset.h index 8ccded41c3be3..a116e9bc7362b 100644 --- a/sys/sys/_sigset.h +++ b/sys/sys/_sigset.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_SIGNAL_H_ diff --git a/sys/sys/acct.h b/sys/sys/acct.h index edc5bdbd56381..a3af776d1ee54 100644 --- a/sys/sys/acct.h +++ b/sys/sys/acct.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)acct.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/sys/bio.h b/sys/sys/bio.h index 96517b64de7e3..e12b5fc289356 100644 --- a/sys/sys/bio.h +++ b/sys/sys/bio.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)buf.h 8.7 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_BUF_H_ diff --git a/sys/sys/buf.h b/sys/sys/buf.h index 96517b64de7e3..e12b5fc289356 100644 --- a/sys/sys/buf.h +++ b/sys/sys/buf.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)buf.h 8.7 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_BUF_H_ diff --git a/sys/sys/callout.h b/sys/sys/callout.h index d685e56d3f08a..67ad0d6ed3d65 100644 --- a/sys/sys/callout.h +++ b/sys/sys/callout.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)callout.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ struct callout { diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 3c50711f53036..d0823580f8086 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)cdefs.h 8.7 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _CDEFS_H_ diff --git a/sys/sys/clist.h b/sys/sys/clist.h index 3e05cf6b77001..857f85d94e3d0 100644 --- a/sys/sys/clist.h +++ b/sys/sys/clist.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)clist.h 8.1 (Berkeley) 6/4/93 + * $Id$ */ struct cblock { diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 58cb6fa8339c0..15f7361b28df4 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)conf.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/sys/device.h b/sys/sys/device.h index 0a233ed3e5c11..2fe1d6a70b3cb 100644 --- a/sys/sys/device.h +++ b/sys/sys/device.h @@ -40,6 +40,7 @@ * SUCH DAMAGE. * * @(#)device.h 8.2 (Berkeley) 2/17/94 + * $Id$ */ #ifndef _SYS_DEVICE_H_ diff --git a/sys/sys/dir.h b/sys/sys/dir.h index 0c4cd679cee73..c0347c1ec5547 100644 --- a/sys/sys/dir.h +++ b/sys/sys/dir.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)dir.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/sys/dirent.h b/sys/sys/dirent.h index 1c4b96aa29cc5..4fef84128f655 100644 --- a/sys/sys/dirent.h +++ b/sys/sys/dirent.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)dirent.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/disk.h b/sys/sys/disk.h index 352ecf0027408..5a935037a6645 100644 --- a/sys/sys/disk.h +++ b/sys/sys/disk.h @@ -41,7 +41,7 @@ * * @(#)disk.h 8.1 (Berkeley) 6/2/93 * - * from: $Header: disk.h,v 1.5 92/11/19 04:33:03 torek Exp $ (LBL) + * $Id$ */ /* diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index 60b8f8f8aaf94..30c16c8da3db2 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/diskmbr.h b/sys/sys/diskmbr.h index 60b8f8f8aaf94..30c16c8da3db2 100644 --- a/sys/sys/diskmbr.h +++ b/sys/sys/diskmbr.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/diskpc98.h b/sys/sys/diskpc98.h index 60b8f8f8aaf94..30c16c8da3db2 100644 --- a/sys/sys/diskpc98.h +++ b/sys/sys/diskpc98.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)disklabel.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/dkbad.h b/sys/sys/dkbad.h index c574000aaf87e..99af34b48e907 100644 --- a/sys/sys/dkbad.h +++ b/sys/sys/dkbad.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)dkbad.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/dkstat.h b/sys/sys/dkstat.h index f7f5f1594a270..5cc6bdd843cd3 100644 --- a/sys/sys/dkstat.h +++ b/sys/sys/dkstat.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)dkstat.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ #define CP_USER 0 diff --git a/sys/sys/dmap.h b/sys/sys/dmap.h index 2a6f538259e22..b9ca5a1e55c61 100644 --- a/sys/sys/dmap.h +++ b/sys/sys/dmap.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)dmap.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_DMAP_H_ diff --git a/sys/sys/domain.h b/sys/sys/domain.h index b056347d53940..0d708335cc451 100644 --- a/sys/sys/domain.h +++ b/sys/sys/domain.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)domain.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/errno.h b/sys/sys/errno.h index a4e4ea6eb6940..96d52f323b0c2 100644 --- a/sys/sys/errno.h +++ b/sys/sys/errno.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)errno.h 8.5 (Berkeley) 1/21/94 + * $Id$ */ #ifndef KERNEL diff --git a/sys/sys/exec.h b/sys/sys/exec.h index be8cd7194dd6d..93f1c9d23548f 100644 --- a/sys/sys/exec.h +++ b/sys/sys/exec.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)exec.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ #include <machine/exec.h> diff --git a/sys/sys/fbio.h b/sys/sys/fbio.h index 63371b77ed8d5..c1c4385adf41b 100644 --- a/sys/sys/fbio.h +++ b/sys/sys/fbio.h @@ -36,7 +36,7 @@ * * @(#)fbio.h 8.2 (Berkeley) 10/30/93 * - * from: $Header: fbio.h,v 1.6 93/10/31 06:01:56 torek Exp $ (LBL) + * $Id$ */ /* diff --git a/sys/sys/fcntl.h b/sys/sys/fcntl.h index 62762f3498afb..33afa9a454d5b 100644 --- a/sys/sys/fcntl.h +++ b/sys/sys/fcntl.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)fcntl.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_FCNTL_H_ diff --git a/sys/sys/fdcio.h b/sys/sys/fdcio.h index 2e3ac31047261..103f11ba99c71 100644 --- a/sys/sys/fdcio.h +++ b/sys/sys/fdcio.h @@ -22,6 +22,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef _IOCTL_FD_H diff --git a/sys/sys/file.h b/sys/sys/file.h index 3d82190669ad7..308485cae2de9 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)file.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #include <sys/fcntl.h> diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h index 1071bc1059700..10ba495c2d086 100644 --- a/sys/sys/filedesc.h +++ b/sys/sys/filedesc.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)filedesc.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/filio.h b/sys/sys/filio.h index 5c8789b882bab..b82a649c0feb1 100644 --- a/sys/sys/filio.h +++ b/sys/sys/filio.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)filio.h 8.1 (Berkeley) 3/28/94 + * $Id$ */ #ifndef _SYS_FILIO_H_ diff --git a/sys/sys/gmon.h b/sys/sys/gmon.h index b103df80a8a78..bd1c9004893c0 100644 --- a/sys/sys/gmon.h +++ b/sys/sys/gmon.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)gmon.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_GMON_H_ diff --git a/sys/sys/ioccom.h b/sys/sys/ioccom.h index 5bc11b328bdfb..9958ac77d344a 100644 --- a/sys/sys/ioccom.h +++ b/sys/sys/ioccom.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ioccom.h 8.2 (Berkeley) 3/28/94 + * $Id$ */ #ifndef _SYS_IOCCOM_H_ diff --git a/sys/sys/ioctl.h b/sys/sys/ioctl.h index d04394fd18114..abe902f57825d 100644 --- a/sys/sys/ioctl.h +++ b/sys/sys/ioctl.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ioctl.h 8.6 (Berkeley) 3/28/94 + * $Id$ */ #ifndef _SYS_IOCTL_H_ diff --git a/sys/sys/ioctl_compat.h b/sys/sys/ioctl_compat.h index fd87b514cf80a..ab067b97e42ba 100644 --- a/sys/sys/ioctl_compat.h +++ b/sys/sys/ioctl_compat.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ioctl_compat.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_IOCTL_COMPAT_H_ diff --git a/sys/sys/ipc.h b/sys/sys/ipc.h index cc036a8e83b5d..7cd33da5138e7 100644 --- a/sys/sys/ipc.h +++ b/sys/sys/ipc.h @@ -41,6 +41,7 @@ * SUCH DAMAGE. * * @(#)ipc.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/sys/kernel.h b/sys/sys/kernel.h index aafa8430eaaad..48cf0d14dcb85 100644 --- a/sys/sys/kernel.h +++ b/sys/sys/kernel.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)kernel.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ /* Global variables for the kernel. */ diff --git a/sys/sys/ktrace.h b/sys/sys/ktrace.h index 1623c3562fe1d..d7d773a1dc088 100644 --- a/sys/sys/ktrace.h +++ b/sys/sys/ktrace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ktrace.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/libkern.h b/sys/sys/libkern.h index 0e465e03dfded..d4669c7dd3d41 100644 --- a/sys/sys/libkern.h +++ b/sys/sys/libkern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)libkern.h 8.1 (Berkeley) 6/10/93 + * $Id$ */ #include <sys/types.h> diff --git a/sys/sys/linedisc.h b/sys/sys/linedisc.h index 58cb6fa8339c0..15f7361b28df4 100644 --- a/sys/sys/linedisc.h +++ b/sys/sys/linedisc.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)conf.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/sys/malloc.h b/sys/sys/malloc.h index aa10965fedac0..46c7df710dbaa 100644 --- a/sys/sys/malloc.h +++ b/sys/sys/malloc.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)malloc.h 8.3 (Berkeley) 1/12/94 + * $Id$ */ #ifndef _SYS_MALLOC_H_ diff --git a/sys/sys/map.h b/sys/sys/map.h index 6cec4b5565338..6877a3d6c7d52 100644 --- a/sys/sys/map.h +++ b/sys/sys/map.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)map.h 8.3 (Berkeley) 1/26/94 + * $Id$ */ /* diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index f3ea7edefe6f1..681b289e2d0ce 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mbuf.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ #ifndef M_WAITOK diff --git a/sys/sys/mman.h b/sys/sys/mman.h index b3951c202cb24..786817bcc7650 100644 --- a/sys/sys/mman.h +++ b/sys/sys/mman.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mman.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 4561675ef0d18..aec0f43cd8bfc 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mount.h 8.13 (Berkeley) 3/27/94 + * $Id$ */ #ifndef KERNEL diff --git a/sys/sys/msgbuf.h b/sys/sys/msgbuf.h index 57ee0b6f30a0a..d47058b20666b 100644 --- a/sys/sys/msgbuf.h +++ b/sys/sys/msgbuf.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)msgbuf.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #define MSG_BSIZE (4096 - 3 * sizeof(long)) diff --git a/sys/sys/mtio.h b/sys/sys/mtio.h index e5e6965745472..93004041c888e 100644 --- a/sys/sys/mtio.h +++ b/sys/sys/mtio.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mtio.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #ifndef _SYS_MTIO_H_ diff --git a/sys/sys/namei.h b/sys/sys/namei.h index 74ff3602c26bd..bb8f0a9326c9f 100644 --- a/sys/sys/namei.h +++ b/sys/sys/namei.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)namei.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_NAMEI_H_ diff --git a/sys/sys/param.h b/sys/sys/param.h index 661af88f8eb0c..0d5b1a7347df1 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)param.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ #define BSD 199306 /* System version (year & month). */ diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 883227e829a39..98940e14aee05 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)proc.h 8.8 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_PROC_H_ diff --git a/sys/sys/protosw.h b/sys/sys/protosw.h index 76ac720d85ffd..f1030d77ff98e 100644 --- a/sys/sys/protosw.h +++ b/sys/sys/protosw.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)protosw.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/ptrace.h b/sys/sys/ptrace.h index f7f99d474a495..d25655bb5c83d 100644 --- a/sys/sys/ptrace.h +++ b/sys/sys/ptrace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ptrace.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_PTRACE_H_ diff --git a/sys/sys/queue.h b/sys/sys/queue.h index c200c9f4ccf91..2a257e096de06 100644 --- a/sys/sys/queue.h +++ b/sys/sys/queue.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)queue.h 8.4 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_QUEUE_H_ diff --git a/sys/sys/reboot.h b/sys/sys/reboot.h index c3c957e17eeb1..a05266ea5d59d 100644 --- a/sys/sys/reboot.h +++ b/sys/sys/reboot.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)reboot.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/resource.h b/sys/sys/resource.h index 559f1ac6c377a..398acea6660b0 100644 --- a/sys/sys/resource.h +++ b/sys/sys/resource.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)resource.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_RESOURCE_H_ diff --git a/sys/sys/resourcevar.h b/sys/sys/resourcevar.h index 0f8d5e30eed27..530ac860392a8 100644 --- a/sys/sys/resourcevar.h +++ b/sys/sys/resourcevar.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)resourcevar.h 8.3 (Berkeley) 2/22/94 + * $Id$ */ #ifndef _SYS_RESOURCEVAR_H_ diff --git a/sys/sys/scsiio.h b/sys/sys/scsiio.h index 05753e41e9ae2..2b7b24250c69c 100644 --- a/sys/sys/scsiio.h +++ b/sys/sys/scsiio.h @@ -1,4 +1,6 @@ - +/* + * $Id$ + */ #ifndef _SYS_SCSIIO_H_ #define _SYS_SCSIIO_H_ diff --git a/sys/sys/select.h b/sys/sys/select.h index a279c592fbe78..e69971e3b6845 100644 --- a/sys/sys/select.h +++ b/sys/sys/select.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)select.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_SELECT_H_ diff --git a/sys/sys/selinfo.h b/sys/sys/selinfo.h index a279c592fbe78..e69971e3b6845 100644 --- a/sys/sys/selinfo.h +++ b/sys/sys/selinfo.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)select.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_SELECT_H_ diff --git a/sys/sys/signal.h b/sys/sys/signal.h index 8ccded41c3be3..a116e9bc7362b 100644 --- a/sys/sys/signal.h +++ b/sys/sys/signal.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)signal.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_SIGNAL_H_ diff --git a/sys/sys/signalvar.h b/sys/sys/signalvar.h index 3d7e68bc5309f..463e2e44282fa 100644 --- a/sys/sys/signalvar.h +++ b/sys/sys/signalvar.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)signalvar.h 8.3 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_SIGNALVAR_H_ /* tmp for user.h */ diff --git a/sys/sys/socket.h b/sys/sys/socket.h index f6728e988540d..c5473ab7fb9bc 100644 --- a/sys/sys/socket.h +++ b/sys/sys/socket.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)socket.h 8.4 (Berkeley) 2/21/94 + * $Id$ */ #ifndef _SYS_SOCKET_H_ diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h index ff104046c7c39..82719376b419b 100644 --- a/sys/sys/socketvar.h +++ b/sys/sys/socketvar.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)socketvar.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #include <sys/select.h> /* for struct selinfo */ diff --git a/sys/sys/sockio.h b/sys/sys/sockio.h index eb5a44a598d17..ab696b1675c9c 100644 --- a/sys/sys/sockio.h +++ b/sys/sys/sockio.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)sockio.h 8.1 (Berkeley) 3/28/94 + * $Id$ */ #ifndef _SYS_SOCKIO_H_ diff --git a/sys/sys/soundcard.h b/sys/sys/soundcard.h index ce28a144242db..3bac78da7e967 100644 --- a/sys/sys/soundcard.h +++ b/sys/sys/soundcard.h @@ -25,6 +25,7 @@ * SUCH DAMAGE. * * + * $Id$ */ /* diff --git a/sys/sys/stat.h b/sys/sys/stat.h index 07020c367703b..ab44103579af4 100644 --- a/sys/sys/stat.h +++ b/sys/sys/stat.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)stat.h 8.6 (Berkeley) 3/8/94 + * $Id$ */ #ifndef _SYS_STAT_H_ diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index 4ad83a74542be..a27ec38bf9f50 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)sysctl.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #ifndef _SYS_SYSCTL_H_ diff --git a/sys/sys/syslimits.h b/sys/sys/syslimits.h index 550000c6503bc..c5e4608a89c6c 100644 --- a/sys/sys/syslimits.h +++ b/sys/sys/syslimits.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)syslimits.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #define ARG_MAX 20480 /* max bytes for an exec function */ diff --git a/sys/sys/syslog.h b/sys/sys/syslog.h index 935db2d4484e9..821f6a7c56bca 100644 --- a/sys/sys/syslog.h +++ b/sys/sys/syslog.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)syslog.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #define _PATH_LOG "/dev/log" diff --git a/sys/sys/systm.h b/sys/sys/systm.h index ba2f12b69f6e0..5e79af3381fc6 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)systm.h 8.4 (Berkeley) 2/23/94 + * $Id$ */ #include <machine/cpufunc.h> diff --git a/sys/sys/tablet.h b/sys/sys/tablet.h index cbb3f23d006c1..f9aefc0cac975 100644 --- a/sys/sys/tablet.h +++ b/sys/sys/tablet.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tablet.h 8.3 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_TABLET_H_ diff --git a/sys/sys/termios.h b/sys/sys/termios.h index 09c34a10466b6..5abe2d916b84a 100644 --- a/sys/sys/termios.h +++ b/sys/sys/termios.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)termios.h 8.3 (Berkeley) 3/28/94 + * $Id$ */ #ifndef _SYS_TERMIOS_H_ diff --git a/sys/sys/time.h b/sys/sys/time.h index 53227712a3b73..00b9e2e8da9e7 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)time.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #ifndef _SYS_TIME_H_ diff --git a/sys/sys/timeb.h b/sys/sys/timeb.h index 2ab010514b602..a1b3379927217 100644 --- a/sys/sys/timeb.h +++ b/sys/sys/timeb.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)timeb.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ /* The ftime(2) system call structure -- deprecated. */ diff --git a/sys/sys/times.h b/sys/sys/times.h index 23a1500829101..961ebfd182644 100644 --- a/sys/sys/times.h +++ b/sys/sys/times.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)times.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_TIMES_H_ diff --git a/sys/sys/timetc.h b/sys/sys/timetc.h index 53227712a3b73..00b9e2e8da9e7 100644 --- a/sys/sys/timetc.h +++ b/sys/sys/timetc.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)time.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #ifndef _SYS_TIME_H_ diff --git a/sys/sys/tprintf.h b/sys/sys/tprintf.h index 5b83aaec02960..01a90d79c486b 100644 --- a/sys/sys/tprintf.h +++ b/sys/sys/tprintf.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)tprintf.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ typedef struct session *tpr_t; diff --git a/sys/sys/trace.h b/sys/sys/trace.h index d401f1459d782..57592ce3d3f61 100644 --- a/sys/sys/trace.h +++ b/sys/sys/trace.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)trace.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/tty.h b/sys/sys/tty.h index 4a89b0382ad03..93957a427065d 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.h 8.6 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/termios.h> diff --git a/sys/sys/ttychars.h b/sys/sys/ttychars.h index 1a23aa770919b..58f489abe2638 100644 --- a/sys/sys/ttychars.h +++ b/sys/sys/ttychars.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ttychars.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ /* diff --git a/sys/sys/ttycom.h b/sys/sys/ttycom.h index 3dade47daad48..899cee051755b 100644 --- a/sys/sys/ttycom.h +++ b/sys/sys/ttycom.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ttycom.h 8.1 (Berkeley) 3/28/94 + * $Id$ */ #ifndef _SYS_TTYCOM_H_ diff --git a/sys/sys/ttydefaults.h b/sys/sys/ttydefaults.h index 1a8aaa5bd0069..b8ab6c02dfc9f 100644 --- a/sys/sys/ttydefaults.h +++ b/sys/sys/ttydefaults.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ttydefaults.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/sys/ttydev.h b/sys/sys/ttydev.h index c52a213692608..cf23b0aab9adc 100644 --- a/sys/sys/ttydev.h +++ b/sys/sys/ttydev.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ttydev.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ /* COMPATABILITY HEADER FILE */ diff --git a/sys/sys/types.h b/sys/sys/types.h index 76d2975d31b58..5ae8da2c44b4e 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)types.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _SYS_TYPES_H_ diff --git a/sys/sys/ucred.h b/sys/sys/ucred.h index d3ee02dbde3d7..2b4dc7dd3f9fb 100644 --- a/sys/sys/ucred.h +++ b/sys/sys/ucred.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ucred.h 8.2 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_UCRED_H_ diff --git a/sys/sys/uio.h b/sys/sys/uio.h index 3356ebfee8958..66ce0fc9048f7 100644 --- a/sys/sys/uio.h +++ b/sys/sys/uio.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)uio.h 8.5 (Berkeley) 2/22/94 + * $Id$ */ #ifndef _SYS_UIO_H_ diff --git a/sys/sys/un.h b/sys/sys/un.h index dcbf800c113f5..8ee3038c0dc56 100644 --- a/sys/sys/un.h +++ b/sys/sys/un.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)un.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/unistd.h b/sys/sys/unistd.h index e086f6f6e3941..9d434b44dfb0f 100644 --- a/sys/sys/unistd.h +++ b/sys/sys/unistd.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)unistd.h 8.2 (Berkeley) 1/7/94 + * $Id$ */ #ifndef _SYS_UNISTD_H_ diff --git a/sys/sys/unpcb.h b/sys/sys/unpcb.h index efcfd0e23c19a..d7afc6135e4fc 100644 --- a/sys/sys/unpcb.h +++ b/sys/sys/unpcb.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)unpcb.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/user.h b/sys/sys/user.h index 85fdd130c2df5..4c1f6a65439ff 100644 --- a/sys/sys/user.h +++ b/sys/sys/user.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)user.h 8.2 (Berkeley) 9/23/93 + * $Id$ */ #include <machine/pcb.h> diff --git a/sys/sys/utsname.h b/sys/sys/utsname.h index 60e6091067ba4..0387cc1d206ec 100644 --- a/sys/sys/utsname.h +++ b/sys/sys/utsname.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)utsname.h 8.1 (Berkeley) 1/4/94 + * $Id$ */ #ifndef _SYS_UTSNAME_H diff --git a/sys/sys/vadvise.h b/sys/sys/vadvise.h index be793e8e721a8..e9a07b9314aeb 100644 --- a/sys/sys/vadvise.h +++ b/sys/sys/vadvise.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vadvise.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/vcmd.h b/sys/sys/vcmd.h index de27ec1b0af1c..8c4554e7ef607 100644 --- a/sys/sys/vcmd.h +++ b/sys/sys/vcmd.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vcmd.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #include <sys/ioctl.h> diff --git a/sys/sys/vlimit.h b/sys/sys/vlimit.h index b6457e64ddf77..ec45285642d28 100644 --- a/sys/sys/vlimit.h +++ b/sys/sys/vlimit.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vlimit.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/vmmeter.h b/sys/sys/vmmeter.h index ef890c295f1d4..a64277028a2ed 100644 --- a/sys/sys/vmmeter.h +++ b/sys/sys/vmmeter.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vmmeter.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index fa51d994a2134..c6c0e46b875a2 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vnode.h 8.7 (Berkeley) 2/4/94 + * $Id$ */ #include <sys/queue.h> diff --git a/sys/sys/vsio.h b/sys/sys/vsio.h index d84218cc23896..f15cc0bf96f1f 100644 --- a/sys/sys/vsio.h +++ b/sys/sys/vsio.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vsio.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /**************************************************************************** diff --git a/sys/sys/wait.h b/sys/sys/wait.h index 33a68d9f33fa8..6f7411a55352e 100644 --- a/sys/sys/wait.h +++ b/sys/sys/wait.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)wait.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ /* diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk index e190fa04836df..339e658943715 100644 --- a/sys/tools/vnode_if.awk +++ b/sys/tools/vnode_if.awk @@ -32,6 +32,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 +# $Id$ # # Script to produce VFS front-end sugar. diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 15e871836f2fb..f6b274df1e549 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_alloc.c 8.8 (Berkeley) 2/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/ffs_balloc.c b/sys/ufs/ffs/ffs_balloc.c index 2addf95b6c6f3..de51704694b40 100644 --- a/sys/ufs/ffs/ffs_balloc.c +++ b/sys/ufs/ffs/ffs_balloc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_balloc.c 8.4 (Berkeley) 9/23/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/ffs_extern.h b/sys/ufs/ffs/ffs_extern.h index 6c30389f49a5e..9b1bb50adc29a 100644 --- a/sys/ufs/ffs/ffs_extern.h +++ b/sys/ufs/ffs/ffs_extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_extern.h 8.3 (Berkeley) 4/16/94 + * $Id$ */ struct buf; diff --git a/sys/ufs/ffs/ffs_inode.c b/sys/ufs/ffs/ffs_inode.c index cf4fae3fa4138..357f9aa4508ac 100644 --- a/sys/ufs/ffs/ffs_inode.c +++ b/sys/ufs/ffs/ffs_inode.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_inode.c 8.5 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/ffs_subr.c b/sys/ufs/ffs/ffs_subr.c index c251b16e69708..faebf637fce2e 100644 --- a/sys/ufs/ffs/ffs_subr.c +++ b/sys/ufs/ffs/ffs_subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_subr.c 8.2 (Berkeley) 9/21/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/ffs_tables.c b/sys/ufs/ffs/ffs_tables.c index 8cf46b0150a5d..cc70ee17841a3 100644 --- a/sys/ufs/ffs/ffs_tables.c +++ b/sys/ufs/ffs/ffs_tables.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_tables.c 8.1 (Berkeley) 6/11/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 41f4a0d2e85ec..def856c66044c 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vfsops.c 8.8 (Berkeley) 4/18/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c index 59814f2f37873..9be65e427a449 100644 --- a/sys/ufs/ffs/ffs_vnops.c +++ b/sys/ufs/ffs/ffs_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vnops.c 8.7 (Berkeley) 2/3/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h index bef052feef4a3..19b15efdb6530 100644 --- a/sys/ufs/ffs/fs.h +++ b/sys/ufs/ffs/fs.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)fs.h 8.7 (Berkeley) 4/19/94 + * $Id$ */ /* diff --git a/sys/ufs/lfs/lfs.h b/sys/ufs/lfs/lfs.h index 87b8c22ccc023..123858353eaca 100644 --- a/sys/ufs/lfs/lfs.h +++ b/sys/ufs/lfs/lfs.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs.h 8.3 (Berkeley) 9/23/93 + * $Id$ */ #define LFS_LABELPAD 8192 /* LFS label size */ diff --git a/sys/ufs/lfs/lfs_alloc.c b/sys/ufs/lfs/lfs_alloc.c index 3f06c81393045..7e5e2a96ba137 100644 --- a/sys/ufs/lfs/lfs_alloc.c +++ b/sys/ufs/lfs/lfs_alloc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_alloc.c 8.4 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_balloc.c b/sys/ufs/lfs/lfs_balloc.c index b56bc9ec51b2e..b7cf75502c434 100644 --- a/sys/ufs/lfs/lfs_balloc.c +++ b/sys/ufs/lfs/lfs_balloc.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_balloc.c 8.1 (Berkeley) 6/11/93 + * $Id$ */ #include <sys/param.h> #include <sys/buf.h> diff --git a/sys/ufs/lfs/lfs_bio.c b/sys/ufs/lfs/lfs_bio.c index d2254271d325e..86d3e33dcca02 100644 --- a/sys/ufs/lfs/lfs_bio.c +++ b/sys/ufs/lfs/lfs_bio.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_bio.c 8.4 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_cksum.c b/sys/ufs/lfs/lfs_cksum.c index 77b011aa2c488..8b70a40c6463e 100644 --- a/sys/ufs/lfs/lfs_cksum.c +++ b/sys/ufs/lfs/lfs_cksum.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_cksum.c 8.1 (Berkeley) 6/11/93 + * $Id$ */ #include <sys/types.h> diff --git a/sys/ufs/lfs/lfs_debug.c b/sys/ufs/lfs/lfs_debug.c index cc28d6090239a..5816c89c9a339 100644 --- a/sys/ufs/lfs/lfs_debug.c +++ b/sys/ufs/lfs/lfs_debug.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_debug.c 8.1 (Berkeley) 6/11/93 + * $Id$ */ #ifdef DEBUG diff --git a/sys/ufs/lfs/lfs_extern.h b/sys/ufs/lfs/lfs_extern.h index c1157ade02afd..c54b0d47ba6e2 100644 --- a/sys/ufs/lfs/lfs_extern.h +++ b/sys/ufs/lfs/lfs_extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_extern.h 8.2 (Berkeley) 4/16/94 + * $Id$ */ struct fid; diff --git a/sys/ufs/lfs/lfs_inode.c b/sys/ufs/lfs/lfs_inode.c index 1a06aa23ed8f9..263c8bc7f5ba4 100644 --- a/sys/ufs/lfs/lfs_inode.c +++ b/sys/ufs/lfs/lfs_inode.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_inode.c 8.5 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_segment.c b/sys/ufs/lfs/lfs_segment.c index 65cab73f51b71..986a2429710be 100644 --- a/sys/ufs/lfs/lfs_segment.c +++ b/sys/ufs/lfs/lfs_segment.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_segment.c 8.5 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_subr.c b/sys/ufs/lfs/lfs_subr.c index 79e36f4f49b51..eb7de08201bbb 100644 --- a/sys/ufs/lfs/lfs_subr.c +++ b/sys/ufs/lfs/lfs_subr.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_subr.c 8.2 (Berkeley) 9/21/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_syscalls.c b/sys/ufs/lfs/lfs_syscalls.c index a4b1501179b03..2180378a4c010 100644 --- a/sys/ufs/lfs/lfs_syscalls.c +++ b/sys/ufs/lfs/lfs_syscalls.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_syscalls.c 8.5 (Berkeley) 4/20/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_vfsops.c b/sys/ufs/lfs/lfs_vfsops.c index f5dd1c6a809e3..7181936b98c78 100644 --- a/sys/ufs/lfs/lfs_vfsops.c +++ b/sys/ufs/lfs/lfs_vfsops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_vfsops.c 8.7 (Berkeley) 4/16/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/lfs/lfs_vnops.c b/sys/ufs/lfs/lfs_vnops.c index e5da7fccf0beb..3d17c39cba7e0 100644 --- a/sys/ufs/lfs/lfs_vnops.c +++ b/sys/ufs/lfs/lfs_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)lfs_vnops.c 8.5 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/mfs/mfs_extern.h b/sys/ufs/mfs/mfs_extern.h index e357faf6fa547..ec8b3f32a14e8 100644 --- a/sys/ufs/mfs/mfs_extern.h +++ b/sys/ufs/mfs/mfs_extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_extern.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ struct buf; diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index fd8777107e260..9238fb3f19ce7 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vfsops.c 8.4 (Berkeley) 4/16/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/mfs/mfs_vnops.c b/sys/ufs/mfs/mfs_vnops.c index c70657b4f3361..ded8c79ab9456 100644 --- a/sys/ufs/mfs/mfs_vnops.c +++ b/sys/ufs/mfs/mfs_vnops.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vnops.c 8.3 (Berkeley) 9/21/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/mfs/mfsiom.h b/sys/ufs/mfs/mfsiom.h index 98aca855f6a66..16eebbe474fd1 100644 --- a/sys/ufs/mfs/mfsiom.h +++ b/sys/ufs/mfs/mfsiom.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mfsiom.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #define MFS_MAPREG (MAXPHYS/NBPG + 2) /* Kernel mapping pte's */ diff --git a/sys/ufs/mfs/mfsnode.h b/sys/ufs/mfs/mfsnode.h index 4480ab024077b..886edd8cce8eb 100644 --- a/sys/ufs/mfs/mfsnode.h +++ b/sys/ufs/mfs/mfsnode.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mfsnode.h 8.2 (Berkeley) 8/11/93 + * $Id$ */ /* diff --git a/sys/ufs/ufs/dinode.h b/sys/ufs/ufs/dinode.h index 5b9915d9cfdb3..fc39dfb785c24 100644 --- a/sys/ufs/ufs/dinode.h +++ b/sys/ufs/ufs/dinode.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)dinode.h 8.3 (Berkeley) 1/21/94 + * $Id$ */ /* diff --git a/sys/ufs/ufs/dir.h b/sys/ufs/ufs/dir.h index c51bd1cf6e16e..6dca4dce80455 100644 --- a/sys/ufs/ufs/dir.h +++ b/sys/ufs/ufs/dir.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)dir.h 8.2 (Berkeley) 1/21/94 + * $Id$ */ #ifndef _DIR_H_ diff --git a/sys/ufs/ufs/inode.h b/sys/ufs/ufs/inode.h index df155967a7dfd..e37944321b470 100644 --- a/sys/ufs/ufs/inode.h +++ b/sys/ufs/ufs/inode.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.4 (Berkeley) 1/21/94 + * $Id$ */ #include <ufs/ufs/dinode.h> diff --git a/sys/ufs/ufs/lockf.h b/sys/ufs/ufs/lockf.h index 0ec61dbb0cfed..f54916656feae 100644 --- a/sys/ufs/ufs/lockf.h +++ b/sys/ufs/ufs/lockf.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)lockf.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/ufs/ufs/quota.h b/sys/ufs/ufs/quota.h index 11efb402c91c0..039a6fd7075ee 100644 --- a/sys/ufs/ufs/quota.h +++ b/sys/ufs/ufs/quota.h @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)quota.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #ifndef _QUOTA_ diff --git a/sys/ufs/ufs/ufs_bmap.c b/sys/ufs/ufs/ufs_bmap.c index a424d31d7a854..6f38edc4d2113 100644 --- a/sys/ufs/ufs/ufs_bmap.c +++ b/sys/ufs/ufs/ufs_bmap.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_bmap.c 8.6 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_disksubr.c b/sys/ufs/ufs/ufs_disksubr.c index cc0f28d37f153..0c787f7e866ca 100644 --- a/sys/ufs/ufs/ufs_disksubr.c +++ b/sys/ufs/ufs/ufs_disksubr.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_disksubr.c 8.5 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_extern.h b/sys/ufs/ufs/ufs_extern.h index e25923e947d54..590b343bb8f01 100644 --- a/sys/ufs/ufs/ufs_extern.h +++ b/sys/ufs/ufs/ufs_extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_extern.h 8.3 (Berkeley) 4/16/94 + * $Id$ */ struct buf; diff --git a/sys/ufs/ufs/ufs_ihash.c b/sys/ufs/ufs/ufs_ihash.c index 4a37c907ef63e..53181c4a2caf5 100644 --- a/sys/ufs/ufs/ufs_ihash.c +++ b/sys/ufs/ufs/ufs_ihash.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.4 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c index ac876f9d34d4c..567f30331782b 100644 --- a/sys/ufs/ufs/ufs_inode.c +++ b/sys/ufs/ufs/ufs_inode.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_inode.c 8.4 (Berkeley) 1/21/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_lockf.c b/sys/ufs/ufs/ufs_lockf.c index cb9a7375de106..bdc22cd5818b9 100644 --- a/sys/ufs/ufs/ufs_lockf.c +++ b/sys/ufs/ufs/ufs_lockf.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)ufs_lockf.c 8.3 (Berkeley) 1/6/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_lookup.c b/sys/ufs/ufs/ufs_lookup.c index 87c6802c79f77..6eb7bbb02b066 100644 --- a/sys/ufs/ufs/ufs_lookup.c +++ b/sys/ufs/ufs/ufs_lookup.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_lookup.c 8.6 (Berkeley) 4/1/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_quota.c b/sys/ufs/ufs/ufs_quota.c index 15cb1cfbb23d2..6b17ec7b58f06 100644 --- a/sys/ufs/ufs/ufs_quota.c +++ b/sys/ufs/ufs/ufs_quota.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. * * @(#)ufs_quota.c 8.2 (Berkeley) 12/30/93 + * $Id$ */ #include <sys/param.h> #include <sys/kernel.h> diff --git a/sys/ufs/ufs/ufs_readwrite.c b/sys/ufs/ufs/ufs_readwrite.c index 212210c583ac9..d7fd562b21198 100644 --- a/sys/ufs/ufs/ufs_readwrite.c +++ b/sys/ufs/ufs/ufs_readwrite.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_readwrite.c 8.7 (Berkeley) 1/21/94 + * $Id$ */ #ifdef LFS_READWRITE diff --git a/sys/ufs/ufs/ufs_vfsops.c b/sys/ufs/ufs/ufs_vfsops.c index f806e0b2a8311..1b82917f46b00 100644 --- a/sys/ufs/ufs/ufs_vfsops.c +++ b/sys/ufs/ufs/ufs_vfsops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_vfsops.c 8.4 (Berkeley) 4/16/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c index 83bef926a8247..76cdc5c44e1ae 100644 --- a/sys/ufs/ufs/ufs_vnops.c +++ b/sys/ufs/ufs/ufs_vnops.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_vnops.c 8.10 (Berkeley) 4/1/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/ufs/ufs/ufsmount.h b/sys/ufs/ufs/ufsmount.h index 237871fdaacaa..084abeb795d28 100644 --- a/sys/ufs/ufs/ufsmount.h +++ b/sys/ufs/ufs/ufsmount.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.2 (Berkeley) 1/12/94 + * $Id$ */ struct buf; diff --git a/sys/vm/device_pager.c b/sys/vm/device_pager.c index b8083df162734..1c92122306d4a 100644 --- a/sys/vm/device_pager.c +++ b/sys/vm/device_pager.c @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)device_pager.c 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/vm/device_pager.h b/sys/vm/device_pager.h index 8840622919dec..677017f997ef3 100644 --- a/sys/vm/device_pager.h +++ b/sys/vm/device_pager.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)device_pager.h 8.3 (Berkeley) 12/13/93 + * $Id$ */ #ifndef _DEVICE_PAGER_ diff --git a/sys/vm/kern_lock.c b/sys/vm/kern_lock.c index c4fa05230a79c..d87d321b7e46c 100644 --- a/sys/vm/kern_lock.c +++ b/sys/vm/kern_lock.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)kern_lock.c 8.1 (Berkeley) 6/11/93 + * from: @(#)kern_lock.c 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/lock.h b/sys/vm/lock.h index 26bed1f048a5d..308d9411c96c9 100644 --- a/sys/vm/lock.h +++ b/sys/vm/lock.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)lock.h 8.1 (Berkeley) 6/11/93 + * from: @(#)lock.h 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h index 63a83c905782a..3a95abc4232f0 100644 --- a/sys/vm/pmap.h +++ b/sys/vm/pmap.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)pmap.h 8.1 (Berkeley) 6/11/93 + * from: @(#)pmap.h 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c index a534d42a850a4..cec9a3f49938c 100644 --- a/sys/vm/swap_pager.c +++ b/sys/vm/swap_pager.c @@ -39,6 +39,7 @@ * from: Utah $Hdr: swap_pager.c 1.4 91/04/30$ * * @(#)swap_pager.c 8.9 (Berkeley) 3/21/94 + * $Id$ */ /* diff --git a/sys/vm/vm.h b/sys/vm/vm.h index bc18dd26b2021..9f51c9481ac91 100644 --- a/sys/vm/vm.h +++ b/sys/vm/vm.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vm.h 8.2 (Berkeley) 12/13/93 + * $Id$ */ #ifndef VM_H diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h index bc62e4253d49b..818e1491a5516 100644 --- a/sys/vm/vm_extern.h +++ b/sys/vm/vm_extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_extern.h 8.2 (Berkeley) 1/12/94 + * $Id$ */ struct buf; diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c index 3ce2d6e452b7a..c91935f070424 100644 --- a/sys/vm/vm_fault.c +++ b/sys/vm/vm_fault.c @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_fault.c 8.4 (Berkeley) 1/12/94 + * from: @(#)vm_fault.c 8.4 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -65,6 +65,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index f181ab034f1d0..e2116974f25be 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_glue.c 8.6 (Berkeley) 1/5/94 + * from: @(#)vm_glue.c 8.6 (Berkeley) 1/5/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -58,6 +58,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ #include <sys/param.h> diff --git a/sys/vm/vm_inherit.h b/sys/vm/vm_inherit.h index 455f91c939083..b4691b4ac562b 100644 --- a/sys/vm/vm_inherit.h +++ b/sys/vm/vm_inherit.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_inherit.h 8.1 (Berkeley) 6/11/93 + * from: @(#)vm_inherit.h 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index a0eac7045e553..3b6214450ddba 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_init.c 8.1 (Berkeley) 6/11/93 + * from: @(#)vm_init.c 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -61,6 +61,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c index 55a094992aa60..0d73b415a16a0 100644 --- a/sys/vm/vm_kern.c +++ b/sys/vm/vm_kern.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_kern.c 8.3 (Berkeley) 1/12/94 + * from: @(#)vm_kern.c 8.3 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_kern.h b/sys/vm/vm_kern.h index c032560f76489..5c82528bc7a08 100644 --- a/sys/vm/vm_kern.h +++ b/sys/vm/vm_kern.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_kern.h 8.1 (Berkeley) 6/11/93 + * from: @(#)vm_kern.h 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* Kernel memory management definitions. */ diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index ffffa963c9969..c4eeb2d5b1510 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_map.c 8.3 (Berkeley) 1/12/94 + * from: @(#)vm_map.c 8.3 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index ee253ef70f615..4f5b64533c4e8 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_map.h 8.3 (Berkeley) 3/15/94 + * from: @(#)vm_map.h 8.3 (Berkeley) 3/15/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c index 2a8029b5ad101..d99f30629e7af 100644 --- a/sys/vm/vm_meter.c +++ b/sys/vm/vm_meter.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_meter.c 8.4 (Berkeley) 1/4/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c index 2e7204a96a120..d0fb654c95491 100644 --- a/sys/vm/vm_mmap.c +++ b/sys/vm/vm_mmap.c @@ -38,6 +38,7 @@ * from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$ * * @(#)vm_mmap.c 8.4 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index a6419dc22aa8b..8b8e60644e616 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_object.c 8.5 (Berkeley) 3/22/94 + * from: @(#)vm_object.c 8.5 (Berkeley) 3/22/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index 5e220acd47cce..1ca8ec3a4cf8f 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_object.h 8.3 (Berkeley) 1/12/94 + * from: @(#)vm_object.h 8.3 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_page.h b/sys/vm/vm_page.h index e8049c4955f9a..57ffbe843e6c5 100644 --- a/sys/vm/vm_page.h +++ b/sys/vm/vm_page.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_page.h 8.2 (Berkeley) 12/13/93 + * from: @(#)vm_page.h 8.2 (Berkeley) 12/13/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index cabb102077a88..99d7365900ca5 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -37,7 +37,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_pageout.c 7.4 (Berkeley) 5/7/91 + * from: @(#)vm_pageout.c 7.4 (Berkeley) 5/7/91 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -65,7 +65,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.c,v 1.3 1994/06/06 11:56:27 davidg Exp $ + * $Id: vm_pageout.c,v 1.4 1994/08/01 11:25:45 davidg Exp $ */ /* diff --git a/sys/vm/vm_pageout.h b/sys/vm/vm_pageout.h index 834aee536880c..5412ddba9bd75 100644 --- a/sys/vm/vm_pageout.h +++ b/sys/vm/vm_pageout.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_pageout.h 8.2 (Berkeley) 1/12/94 + * from: @(#)vm_pageout.h 8.2 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c index 1e4b201120f7b..f7de85399e688 100644 --- a/sys/vm/vm_pager.c +++ b/sys/vm/vm_pager.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_pager.c 8.6 (Berkeley) 1/12/94 + * from: @(#)vm_pager.c 8.6 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_pager.h b/sys/vm/vm_pager.h index 3e20e50bcad9b..a6cef9f33520a 100644 --- a/sys/vm/vm_pager.h +++ b/sys/vm/vm_pager.h @@ -37,6 +37,7 @@ * SUCH DAMAGE. * * @(#)vm_pager.h 8.4 (Berkeley) 1/12/94 + * $Id$ */ /* diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index 4a785ce6e4ea3..4fc3449452e77 100644 --- a/sys/vm/vm_param.h +++ b/sys/vm/vm_param.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_param.h 8.1 (Berkeley) 6/11/93 + * from: @(#)vm_param.h 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_prot.h b/sys/vm/vm_prot.h index ee009bc4d03c8..e34dc0e695452 100644 --- a/sys/vm/vm_prot.h +++ b/sys/vm/vm_prot.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_prot.h 8.1 (Berkeley) 6/11/93 + * from: @(#)vm_prot.h 8.1 (Berkeley) 6/11/93 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c index 5008a09ce1613..a504ffdebe176 100644 --- a/sys/vm/vm_swap.c +++ b/sys/vm/vm_swap.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_swap.c 8.5 (Berkeley) 2/17/94 + * $Id$ */ #include <sys/param.h> diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c index ee6ddf6ab536b..d9216deef5717 100644 --- a/sys/vm/vm_unix.c +++ b/sys/vm/vm_unix.c @@ -38,6 +38,7 @@ * from: Utah $Hdr: vm_unix.c 1.1 89/11/07$ * * @(#)vm_unix.c 8.1 (Berkeley) 6/11/93 + * $Id$ */ /* diff --git a/sys/vm/vm_user.c b/sys/vm/vm_user.c index 0f2c23432f530..0d9087ba35750 100644 --- a/sys/vm/vm_user.c +++ b/sys/vm/vm_user.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)vm_user.c 8.2 (Berkeley) 1/12/94 + * from: @(#)vm_user.c 8.2 (Berkeley) 1/12/94 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. @@ -60,6 +60,8 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $Id$ */ /* diff --git a/sys/vm/vnode_pager.h b/sys/vm/vnode_pager.h index b01dc54ec09b7..9270b2c153cae 100644 --- a/sys/vm/vnode_pager.h +++ b/sys/vm/vnode_pager.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)vnode_pager.h 8.1 (Berkeley) 6/11/93 + * $Id$ */ #ifndef _VNODE_PAGER_ |