diff options
31 files changed, 50 insertions, 2 deletions
diff --git a/lib/libc/arch/alpha/string/ffs.S b/lib/libc/arch/alpha/string/ffs.S index 4c30a164c27..9ad222a4806 100644 --- a/lib/libc/arch/alpha/string/ffs.S +++ b/lib/libc/arch/alpha/string/ffs.S @@ -1,3 +1,4 @@ +/* $OpenBSD: ffs.S,v 1.2 2004/10/01 04:08:45 jsg Exp $ */ /* $NetBSD: ffs.S,v 1.3 1996/10/17 03:08:13 cgd Exp $ */ /* diff --git a/lib/libc/arch/arm/sys/brk.S b/lib/libc/arch/arm/sys/brk.S index 6cfed2ed240..34ed7336b39 100644 --- a/lib/libc/arch/arm/sys/brk.S +++ b/lib/libc/arch/arm/sys/brk.S @@ -1,3 +1,4 @@ +/* $OpenBSD: brk.S,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ /* $NetBSD: brk.S,v 1.7 2003/12/26 11:23:44 martin Exp $ */ /*- diff --git a/lib/libc/arch/sparc64/string/ffs.S b/lib/libc/arch/sparc64/string/ffs.S index 5ab54982b19..82d2c073d49 100644 --- a/lib/libc/arch/sparc64/string/ffs.S +++ b/lib/libc/arch/sparc64/string/ffs.S @@ -1,3 +1,5 @@ +/* $OpenBSD: ffs.S,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libc/crypt/skipjack.c b/lib/libc/crypt/skipjack.c index e700f40c39c..2212b984bba 100644 --- a/lib/libc/crypt/skipjack.c +++ b/lib/libc/crypt/skipjack.c @@ -1,3 +1,5 @@ +/* $OpenBSD: skipjack.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ + /* * Further optimized test implementation of SKIPJACK algorithm * Mark Tillotson <markt@chaos.org.uk>, 25 June 98 diff --git a/lib/libc/gen/alloca.c b/lib/libc/gen/alloca.c index f9baf138a36..37a235a2b09 100644 --- a/lib/libc/gen/alloca.c +++ b/lib/libc/gen/alloca.c @@ -1,3 +1,5 @@ +/* $OpenBSD: alloca.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ + /* alloca.c -- allocate automatically reclaimed memory (Mostly) portable public-domain implementation -- D A Gwyn diff --git a/lib/libc/locale/setlocale.3 b/lib/libc/locale/setlocale.3 index 6c66560fcf8..3fa45a55651 100644 --- a/lib/libc/locale/setlocale.3 +++ b/lib/libc/locale/setlocale.3 @@ -1,3 +1,4 @@ +.\" $OpenBSD: setlocale.3,v 1.10 2004/10/01 04:08:45 jsg Exp $ .\" $NetBSD: setlocale.3,v 1.3 1997/07/14 23:19:47 kleink Exp $ .\" .\" Copyright (c) 1993 diff --git a/lib/libc/net/freeaddrinfo.c b/lib/libc/net/freeaddrinfo.c index 30fbecb805a..ebbc2492df9 100644 --- a/lib/libc/net/freeaddrinfo.c +++ b/lib/libc/net/freeaddrinfo.c @@ -1,3 +1,5 @@ +/* $OpenBSD: freeaddrinfo.c,v 1.5 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 1996, 1997, 1998, 1999, Craig Metz, All rights reserved. * diff --git a/lib/libc/net/net_addrcmp.c b/lib/libc/net/net_addrcmp.c index c77a2fda48f..b5732ec99af 100644 --- a/lib/libc/net/net_addrcmp.c +++ b/lib/libc/net/net_addrcmp.c @@ -1,3 +1,5 @@ +/* $OpenBSD: net_addrcmp.c,v 1.8 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 1999 Theo de Raadt * All rights reserved. diff --git a/lib/libc/stdlib/lsearch.3 b/lib/libc/stdlib/lsearch.3 index 2adc51096dd..818aa1bb43d 100644 --- a/lib/libc/stdlib/lsearch.3 +++ b/lib/libc/stdlib/lsearch.3 @@ -1,3 +1,5 @@ +.\" $OpenBSD: lsearch.3,v 1.4 2004/10/01 04:08:45 jsg Exp $ +.\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" diff --git a/lib/libc/stdlib/lsearch.c b/lib/libc/stdlib/lsearch.c index 82483d1c82d..08154301998 100644 --- a/lib/libc/stdlib/lsearch.c +++ b/lib/libc/stdlib/lsearch.c @@ -1,3 +1,5 @@ +/* $OpenBSD: lsearch.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libc/stdlib/tfind.c b/lib/libc/stdlib/tfind.c index 5c3b8c17f57..34b916db6cc 100644 --- a/lib/libc/stdlib/tfind.c +++ b/lib/libc/stdlib/tfind.c @@ -1,3 +1,5 @@ +/* $OpenBSD: tfind.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ + /* * Tree search generalized from Knuth (6.2.2) Algorithm T just like * the AT&T man page says. diff --git a/lib/libc/stdlib/tsearch.c b/lib/libc/stdlib/tsearch.c index 0ad5866172a..67388b4e7f6 100644 --- a/lib/libc/stdlib/tsearch.c +++ b/lib/libc/stdlib/tsearch.c @@ -1,3 +1,5 @@ +/* $OpenBSD: tsearch.c,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ + /* * Tree search generalized from Knuth (6.2.2) Algorithm T just like * the AT&T man page says. diff --git a/sbin/disklabel/extern.h b/sbin/disklabel/extern.h index 788407665d5..b9344e51ebd 100644 --- a/sbin/disklabel/extern.h +++ b/sbin/disklabel/extern.h @@ -1,3 +1,5 @@ +/* $OpenBSD: extern.h,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 2003 Theo de Raadt <deraadt@openbsd.org> * diff --git a/sbin/isakmpd/monitor_fdpass.c b/sbin/isakmpd/monitor_fdpass.c index 46a7d7106ed..01596539a21 100644 --- a/sbin/isakmpd/monitor_fdpass.c +++ b/sbin/isakmpd/monitor_fdpass.c @@ -1,3 +1,5 @@ +/* $OpenBSD: monitor_fdpass.c,v 1.11 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> * All rights reserved. diff --git a/sbin/newfs_msdos/newfs_msdos.c b/sbin/newfs_msdos/newfs_msdos.c index 336b8955771..39007f94007 100644 --- a/sbin/newfs_msdos/newfs_msdos.c +++ b/sbin/newfs_msdos/newfs_msdos.c @@ -1,3 +1,5 @@ +/* $OpenBSD: newfs_msdos.c,v 1.15 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 1998 Robert Nordier * All rights reserved. diff --git a/sys/dev/ic/si4136reg.h b/sys/dev/ic/si4136reg.h index ee4ed391c9c..9ab399751d4 100644 --- a/sys/dev/ic/si4136reg.h +++ b/sys/dev/ic/si4136reg.h @@ -1,3 +1,4 @@ +/* $OpenBSD: si4136reg.h,v 1.2 2004/10/01 04:08:45 jsg Exp $ */ /* $NetBSD$ */ /* diff --git a/sys/dev/microcode/siop/oosiop.ss b/sys/dev/microcode/siop/oosiop.ss index b1c084f803c..e880466fc02 100644 --- a/sys/dev/microcode/siop/oosiop.ss +++ b/sys/dev/microcode/siop/oosiop.ss @@ -1,3 +1,4 @@ +; $OpenBSD: oosiop.ss,v 1.2 2004/10/01 04:08:45 jsg Exp $ ; $NetBSD: oosiop.ss,v 1.2 2003/04/06 09:48:42 tsutsui Exp $ ; diff --git a/sys/dev/midivar.h b/sys/dev/midivar.h index 030b69dc27b..2bc6bf0f412 100644 --- a/sys/dev/midivar.h +++ b/sys/dev/midivar.h @@ -1,3 +1,5 @@ +/* $OpenBSD: midivar.h,v 1.4 2004/10/01 04:08:45 jsg Exp $ */ + /* * Copyright (c) 2003, 2004 Alexandre Ratchov * diff --git a/sys/dev/mii/acphyreg.h b/sys/dev/mii/acphyreg.h index ae359ead47b..3eb61cd7c4e 100644 --- a/sys/dev/mii/acphyreg.h +++ b/sys/dev/mii/acphyreg.h @@ -1,3 +1,4 @@ +/* $OpenBSD: acphyreg.h,v 1.2 2004/10/01 04:08:45 jsg Exp $ */ /* $NetBSD: acphyreg.h,v 1.1 2001/08/24 17:54:33 thorpej Exp $ */ /* diff --git a/sys/dev/mii/tlphy.c b/sys/dev/mii/tlphy.c index ce96ad72f91..005db1ab39d 100644 --- a/sys/dev/mii/tlphy.c +++ b/sys/dev/mii/tlphy.c @@ -1,3 +1,4 @@ +/* $OpenBSD: tlphy.c,v 1.12 2004/10/01 04:08:45 jsg Exp $ */ /* $NetBSD: tlphy.c,v 1.26 2000/07/04 03:29:00 thorpej Exp $ */ /*- diff --git a/sys/dev/ofw/ofw_pci.h b/sys/dev/ofw/ofw_pci.h index f6cd2b1b839..a463f687e7b 100644 --- a/sys/dev/ofw/ofw_pci.h +++ b/sys/dev/ofw/ofw_pci.h @@ -1,3 +1,4 @@ +/* $OpenBSD: ofw_pci.h,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ /* $NetBSD: ofw_pci.h,v 1.4 2001/02/17 16:28:37 mrg Exp $ */ /*- diff --git a/sys/dev/pci/agp_intel.c b/sys/dev/pci/agp_intel.c index 2a4449715b7..7a5c8aa9042 100644 --- a/sys/dev/pci/agp_intel.c +++ b/sys/dev/pci/agp_intel.c @@ -1,4 +1,4 @@ -/* $OpentBSD: agp_intel.c,v 1.1 2001/10/25 21:44:00 thorpej Exp $ */ +/* $OpenBSD: agp_intel.c,v 1.3 2004/10/01 04:08:46 jsg Exp $ */ /* $NetBSD: agp_intel.c,v 1.3 2001/09/15 00:25:00 thorpej Exp $ */ /*- diff --git a/sys/dev/pci/amdpmreg.h b/sys/dev/pci/amdpmreg.h index d16658af4fd..e19b1703d62 100644 --- a/sys/dev/pci/amdpmreg.h +++ b/sys/dev/pci/amdpmreg.h @@ -1,3 +1,4 @@ +/* $OpenBSD: amdpmreg.h,v 1.3 2004/10/01 04:08:46 jsg Exp $ */ /* $NetBSD$ */ /*- diff --git a/sys/dev/pci/fwlynx_pci.c b/sys/dev/pci/fwlynx_pci.c index 803fdc977de..af1b1e2c5a0 100644 --- a/sys/dev/pci/fwlynx_pci.c +++ b/sys/dev/pci/fwlynx_pci.c @@ -1,3 +1,5 @@ +/* $OpenBSD: fwlynx_pci.c,v 1.5 2004/10/01 04:08:46 jsg Exp $ */ + /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. diff --git a/sys/dev/pci/usb_pci.c b/sys/dev/pci/usb_pci.c index c8fc9cdd638..941d290d947 100644 --- a/sys/dev/pci/usb_pci.c +++ b/sys/dev/pci/usb_pci.c @@ -1,3 +1,4 @@ +/* $OpenBSD: usb_pci.c,v 1.2 2004/10/01 04:08:46 jsg Exp $ */ /* $NetBSD: usb_pci.c,v 1.3 2002/02/14 21:58:30 augustss Exp $ */ /* diff --git a/sys/dev/pci/usb_pci.h b/sys/dev/pci/usb_pci.h index 99a5fd91dff..880bf08b952 100644 --- a/sys/dev/pci/usb_pci.h +++ b/sys/dev/pci/usb_pci.h @@ -1,3 +1,4 @@ +/* $OpenBSD: usb_pci.h,v 1.2 2004/10/01 04:08:46 jsg Exp $ */ /* $NetBSD: usb_pci.h,v 1.3 2002/02/14 21:58:30 augustss Exp $ */ /* diff --git a/sys/dev/usb/if_axe.c b/sys/dev/usb/if_axe.c index 685ff808e27..793ebc8ac01 100644 --- a/sys/dev/usb/if_axe.c +++ b/sys/dev/usb/if_axe.c @@ -1,3 +1,5 @@ +/* $OpenBSD: if_axe.c,v 1.11 2004/10/01 04:08:46 jsg Exp $ */ + /* * Copyright (c) 1997, 1998, 1999, 2000-2003 * Bill Paul <wpaul@windriver.com>. All rights reserved. diff --git a/sys/dev/usb/if_axereg.h b/sys/dev/usb/if_axereg.h index cd406d3fe19..7f287b8c9b2 100644 --- a/sys/dev/usb/if_axereg.h +++ b/sys/dev/usb/if_axereg.h @@ -1,3 +1,5 @@ +/* $OpenBSD: if_axereg.h,v 1.3 2004/10/01 04:08:46 jsg Exp $ */ + /* * Copyright (c) 1997, 1998, 1999, 2000-2003 * Bill Paul <wpaul@windriver.com>. All rights reserved. diff --git a/sys/dev/usb/umidireg.h b/sys/dev/usb/umidireg.h index e2a51b40f4a..3db68c93c0a 100644 --- a/sys/dev/usb/umidireg.h +++ b/sys/dev/usb/umidireg.h @@ -1,3 +1,4 @@ +/* $OpenBSD: umidireg.h,v 1.5 2004/10/01 04:08:46 jsg Exp $ */ /* $NetBSD: umidireg.h,v 1.3 2003/12/04 13:57:31 keihan Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. diff --git a/sys/sys/mutex.h b/sys/sys/mutex.h index 51e08d702d0..9e52d6de6e7 100644 --- a/sys/sys/mutex.h +++ b/sys/sys/mutex.h @@ -1,3 +1,5 @@ +/* $OpenBSD: mutex.h,v 1.2 2004/10/01 04:08:46 jsg Exp $ */ + /* * Copyright (c) 2004 Artur Grabowski <art@openbsd.org> * All rights reserved. diff --git a/usr.sbin/spray/spray.c b/usr.sbin/spray/spray.c index 683c525b7dc..a1d2777f82e 100644 --- a/usr.sbin/spray/spray.c +++ b/usr.sbin/spray/spray.c @@ -1,3 +1,5 @@ +/* $OpenBSD: spray.c,v 1.6 2004/10/01 04:08:46 jsg Exp $ */ + /* * Copyright (c) 1993 Winning Strategies, Inc. * All rights reserved. @@ -27,7 +29,7 @@ * (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: spray.c,v 1.5 2003/06/26 22:22:33 deraadt Exp $ + * $Id: spray.c,v 1.6 2004/10/01 04:08:46 jsg Exp $ */ #include <stdio.h> |