diff options
Diffstat (limited to 'usr.bin/ar')
-rw-r--r-- | usr.bin/ar/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/ar/append.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/ar.1 | 1 | ||||
-rw-r--r-- | usr.bin/ar/ar.5 | 1 | ||||
-rw-r--r-- | usr.bin/ar/ar.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/archive.h | 1 | ||||
-rw-r--r-- | usr.bin/ar/contents.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/delete.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/extern.h | 1 | ||||
-rw-r--r-- | usr.bin/ar/extract.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/misc.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/move.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/pathnames.h | 1 | ||||
-rw-r--r-- | usr.bin/ar/print.c | 3 | ||||
-rw-r--r-- | usr.bin/ar/replace.c | 3 |
15 files changed, 24 insertions, 10 deletions
diff --git a/usr.bin/ar/Makefile b/usr.bin/ar/Makefile index 25cedb393e6..451a43c087c 100644 --- a/usr.bin/ar/Makefile +++ b/usr.bin/ar/Makefile @@ -1,5 +1,5 @@ +# $OpenBSD: Makefile,v 1.2 1996/06/26 05:31:15 deraadt Exp $ # $NetBSD: Makefile,v 1.7 1995/03/25 06:39:33 glass Exp $ -# @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= ar CFLAGS+=-I${.CURDIR} diff --git a/usr.bin/ar/append.c b/usr.bin/ar/append.c index 04055ed6648..5d3dc169708 100644 --- a/usr.bin/ar/append.c +++ b/usr.bin/ar/append.c @@ -1,3 +1,4 @@ +/* $OpenBSD: append.c,v 1.2 1996/06/26 05:31:16 deraadt Exp $ */ /* $NetBSD: append.c,v 1.5 1995/03/26 03:27:37 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)append.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: append.c,v 1.5 1995/03/26 03:27:37 glass Exp $"; +static char rcsid[] = "$OpenBSD: append.c,v 1.2 1996/06/26 05:31:16 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/ar.1 b/usr.bin/ar/ar.1 index 1898058c900..7e1a1964949 100644 --- a/usr.bin/ar/ar.1 +++ b/usr.bin/ar/ar.1 @@ -1,3 +1,4 @@ +.\" $OpenBSD: ar.1,v 1.2 1996/06/26 05:31:17 deraadt Exp $ .\" $NetBSD: ar.1,v 1.7 1995/08/18 15:05:11 pk Exp $ .\" .\" Copyright (c) 1990, 1993 diff --git a/usr.bin/ar/ar.5 b/usr.bin/ar/ar.5 index 5d7c72bed43..f3f95236d76 100644 --- a/usr.bin/ar/ar.5 +++ b/usr.bin/ar/ar.5 @@ -1,3 +1,4 @@ +.\" $OpenBSD: ar.5,v 1.2 1996/06/26 05:31:17 deraadt Exp $ .\" $NetBSD: ar.5,v 1.2 1995/03/25 06:39:38 glass Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c index fdbdc757198..4de5e562911 100644 --- a/usr.bin/ar/ar.c +++ b/usr.bin/ar/ar.c @@ -1,3 +1,4 @@ +/* $OpenBSD: ar.c,v 1.2 1996/06/26 05:31:18 deraadt Exp $ */ /* $NetBSD: ar.c,v 1.5 1995/03/26 03:27:44 glass Exp $ */ /*- @@ -46,7 +47,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)ar.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: ar.c,v 1.5 1995/03/26 03:27:44 glass Exp $"; +static char rcsid[] = "$OpenBSD: ar.c,v 1.2 1996/06/26 05:31:18 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/archive.h b/usr.bin/ar/archive.h index aca4c875adb..1ba81c2fab3 100644 --- a/usr.bin/ar/archive.h +++ b/usr.bin/ar/archive.h @@ -1,3 +1,4 @@ +/* $OpenBSD: archive.h,v 1.2 1996/06/26 05:31:18 deraadt Exp $ */ /* $NetBSD: archive.h,v 1.6 1995/03/25 06:39:43 glass Exp $ */ /*- diff --git a/usr.bin/ar/contents.c b/usr.bin/ar/contents.c index 4aa7b26032a..866f88c9eef 100644 --- a/usr.bin/ar/contents.c +++ b/usr.bin/ar/contents.c @@ -1,3 +1,4 @@ +/* $OpenBSD: contents.c,v 1.2 1996/06/26 05:31:19 deraadt Exp $ */ /* $NetBSD: contents.c,v 1.5 1995/03/26 03:27:49 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)contents.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: contents.c,v 1.5 1995/03/26 03:27:49 glass Exp $"; +static char rcsid[] = "$OpenBSD: contents.c,v 1.2 1996/06/26 05:31:19 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/delete.c b/usr.bin/ar/delete.c index a4245a773bb..b138dacbab0 100644 --- a/usr.bin/ar/delete.c +++ b/usr.bin/ar/delete.c @@ -1,3 +1,4 @@ +/* $OpenBSD: delete.c,v 1.2 1996/06/26 05:31:19 deraadt Exp $ */ /* $NetBSD: delete.c,v 1.5 1995/03/26 03:27:52 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)delete.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: delete.c,v 1.5 1995/03/26 03:27:52 glass Exp $"; +static char rcsid[] = "$OpenBSD: delete.c,v 1.2 1996/06/26 05:31:19 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/extern.h b/usr.bin/ar/extern.h index ee606c5123b..16640e9cdcf 100644 --- a/usr.bin/ar/extern.h +++ b/usr.bin/ar/extern.h @@ -1,3 +1,4 @@ +/* $OpenBSD: extern.h,v 1.2 1996/06/26 05:31:20 deraadt Exp $ */ /* $NetBSD: extern.h,v 1.4 1995/03/25 06:39:46 glass Exp $ */ /*- diff --git a/usr.bin/ar/extract.c b/usr.bin/ar/extract.c index 8d42841fe9d..7861c3356a1 100644 --- a/usr.bin/ar/extract.c +++ b/usr.bin/ar/extract.c @@ -1,3 +1,4 @@ +/* $OpenBSD: extract.c,v 1.2 1996/06/26 05:31:20 deraadt Exp $ */ /* $NetBSD: extract.c,v 1.5 1995/03/26 03:27:53 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)extract.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: extract.c,v 1.5 1995/03/26 03:27:53 glass Exp $"; +static char rcsid[] = "$OpenBSD: extract.c,v 1.2 1996/06/26 05:31:20 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/misc.c b/usr.bin/ar/misc.c index 0e71744f076..fe67b468843 100644 --- a/usr.bin/ar/misc.c +++ b/usr.bin/ar/misc.c @@ -1,3 +1,4 @@ +/* $OpenBSD: misc.c,v 1.2 1996/06/26 05:31:21 deraadt Exp $ */ /* $NetBSD: misc.c,v 1.6 1995/03/26 03:27:55 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: misc.c,v 1.6 1995/03/26 03:27:55 glass Exp $"; +static char rcsid[] = "$OpenBSD: misc.c,v 1.2 1996/06/26 05:31:21 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/move.c b/usr.bin/ar/move.c index 039360d1059..7bc1d7668a0 100644 --- a/usr.bin/ar/move.c +++ b/usr.bin/ar/move.c @@ -1,3 +1,4 @@ +/* $OpenBSD: move.c,v 1.2 1996/06/26 05:31:21 deraadt Exp $ */ /* $NetBSD: move.c,v 1.5 1995/03/26 03:27:57 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)move.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: move.c,v 1.5 1995/03/26 03:27:57 glass Exp $"; +static char rcsid[] = "$OpenBSD: move.c,v 1.2 1996/06/26 05:31:21 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/pathnames.h b/usr.bin/ar/pathnames.h index f4ea52b6f50..2d628260a3f 100644 --- a/usr.bin/ar/pathnames.h +++ b/usr.bin/ar/pathnames.h @@ -1,3 +1,4 @@ +/* $OpenBSD: pathnames.h,v 1.2 1996/06/26 05:31:22 deraadt Exp $ */ /* $NetBSD: pathnames.h,v 1.4 1995/03/25 06:39:50 glass Exp $ */ /*- diff --git a/usr.bin/ar/print.c b/usr.bin/ar/print.c index a85cc94cbe0..ed5490723f1 100644 --- a/usr.bin/ar/print.c +++ b/usr.bin/ar/print.c @@ -1,3 +1,4 @@ +/* $OpenBSD: print.c,v 1.2 1996/06/26 05:31:22 deraadt Exp $ */ /* $NetBSD: print.c,v 1.5 1995/03/26 03:27:59 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)print.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: print.c,v 1.5 1995/03/26 03:27:59 glass Exp $"; +static char rcsid[] = "$OpenBSD: print.c,v 1.2 1996/06/26 05:31:22 deraadt Exp $"; #endif #endif /* not lint */ diff --git a/usr.bin/ar/replace.c b/usr.bin/ar/replace.c index 93a201043cf..efce3c37d75 100644 --- a/usr.bin/ar/replace.c +++ b/usr.bin/ar/replace.c @@ -1,3 +1,4 @@ +/* $OpenBSD: replace.c,v 1.2 1996/06/26 05:31:23 deraadt Exp $ */ /* $NetBSD: replace.c,v 1.6 1995/03/26 03:28:01 glass Exp $ */ /*- @@ -40,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)replace.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$NetBSD: replace.c,v 1.6 1995/03/26 03:28:01 glass Exp $"; +static char rcsid[] = "$OpenBSD: replace.c,v 1.2 1996/06/26 05:31:23 deraadt Exp $"; #endif #endif /* not lint */ |