diff options
Diffstat (limited to 'gnu')
637 files changed, 904 insertions, 653 deletions
diff --git a/gnu/Makefile b/gnu/Makefile index 88925400f1cd..ac8faadcaad4 100644 --- a/gnu/Makefile +++ b/gnu/Makefile @@ -1,5 +1,5 @@  #	@(#)Makefile	5.33.1.1 (Berkeley) 5/6/91 -#	$Id$ +#	$Id: Makefile,v 1.30 1995/12/23 17:03:07 markm Exp $  SUBDIR= include lib libexec usr.bin usr.sbin diff --git a/gnu/gnu2bmake/gcc-2.6.0.tcl b/gnu/gnu2bmake/gcc-2.6.0.tcl index 97181aa8990f..5b07e5c8b315 100644 --- a/gnu/gnu2bmake/gcc-2.6.0.tcl +++ b/gnu/gnu2bmake/gcc-2.6.0.tcl @@ -7,7 +7,7 @@  # this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp  # ----------------------------------------------------------------------------  # -# $Id$ +# $Id: gcc-2.6.0.tcl,v 1.3.8.1 1998/03/01 17:50:09 jkh Exp $  #  source gnu2bmake.tcl @@ -116,7 +116,7 @@ sh "mkdir $ddir/legal"  sh "cp $sdir/gen-*.c $sdir/md $ddir/legal"  set f [open $ddir/README w]  puts $f { -$Id$ +$Id: gcc-2.6.0.tcl,v 1.3.8.1 1998/03/01 17:50:09 jkh Exp $  This directory contains gcc in a form that uses "bmake" makefiles.  This is not the place you want to start, if you want to hack gcc. diff --git a/gnu/gnu2bmake/gcc-2.6.1.tcl b/gnu/gnu2bmake/gcc-2.6.1.tcl index 08b6da0e6d5b..b429a1e29100 100755 --- a/gnu/gnu2bmake/gcc-2.6.1.tcl +++ b/gnu/gnu2bmake/gcc-2.6.1.tcl @@ -7,7 +7,7 @@  # this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp  # ----------------------------------------------------------------------------  # -# $Id: gcc-2.6.1.tcl,v 1.2 1994/11/15 04:52:18 phk Exp $ +# $Id: gcc-2.6.1.tcl,v 1.2.6.1 1998/03/01 17:50:12 jkh Exp $  #  # Good for 2.6.1 and 2.6.2 @@ -95,7 +95,7 @@ set target [makefile_macro target $sdir]  sh "rm -rf $ddir"  sh "mkdir $ddir"  set f [open $ddir/Makefile.inc w] -puts $f "#\n# \$Id$\n#\n" +puts $f "#\n# \$Id: gcc-2.6.1.tcl,v 1.2.6.1 1998/03/01 17:50:12 jkh Exp $\n#\n"  puts $f "CFLAGS+=\t-I\${.CURDIR} -I\${.CURDIR}/../include"  puts $f "CFLAGS+=\t-Dbsd4_4"  puts $f "CFLAGS+=\t-DGCC_INCLUDE_DIR=\\\"FOO\\\"" @@ -124,7 +124,7 @@ puts $f ".endif"  close $f  set f [open $ddir/Makefile w] -puts $f "#\n# \$Id$\n#\n" +puts $f "#\n# \$Id: gcc-2.6.1.tcl,v 1.2.6.1 1998/03/01 17:50:12 jkh Exp $\n#\n"  puts $f "PGMDIR=\tcc_int cpp cc1 cc cc1plus c++ f77 libgcc"  puts $f "SUBDIR=\t\$(PGMDIR)"  puts $f "\n.include <bsd.subdir.mk>" @@ -135,7 +135,7 @@ sh "mkdir $ddir/legal"  sh "cp $sdir/gen-*.c $sdir/md $ddir/legal"  set f [open $ddir/README w]  puts $f { -$Id: gcc-2.6.1.tcl,v 1.2 1994/11/15 04:52:18 phk Exp $ +$Id: gcc-2.6.1.tcl,v 1.2.6.1 1998/03/01 17:50:12 jkh Exp $  This directory contains gcc in a form that uses "bmake" makefiles.  This is not the place you want to start, if you want to hack gcc. @@ -154,7 +154,7 @@ Thankyou.  # do ~/libgcc  sh "mkdir $ddir/libgcc"  set f [open $ddir/libgcc/Makefile w] -puts $f "#\n# \$Id$\n#\n" +puts $f "#\n# \$Id: gcc-2.6.1.tcl,v 1.2.6.1 1998/03/01 17:50:12 jkh Exp $\n#\n"  puts $f "LIB=\tgcc"  puts $f "INSTALL_PIC_ARCHIVE=\tyes"  puts $f "SHLIB_MAJOR=\t261" diff --git a/gnu/gnu2bmake/gnu2bmake.tcl b/gnu/gnu2bmake/gnu2bmake.tcl index c1f0a0dc53e5..6e5ba93d00fd 100644 --- a/gnu/gnu2bmake/gnu2bmake.tcl +++ b/gnu/gnu2bmake/gnu2bmake.tcl @@ -7,7 +7,7 @@  # this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp  # ----------------------------------------------------------------------------  # -# $Id: gnu2bmake.tcl,v 1.3 1994/11/15 04:52:19 phk Exp $ +# $Id: gnu2bmake.tcl,v 1.3.6.1 1998/03/01 17:50:16 jkh Exp $  #  #######################################################################  # Generic procedures usable in the process of gnu-to-bmake jobs. @@ -166,7 +166,7 @@ proc makefile_macro {macro dir {makefile Makefile}} {  proc mk_prog {ddir name list {make ""}} {      sh "mkdir $ddir/$name"      set f [open $ddir/$name/Makefile w] -    puts $f "#\n# \$Id$\n#\n" +    puts $f "#\n# \$Id: gnu2bmake.tcl,v 1.3.6.1 1998/03/01 17:50:16 jkh Exp $\n#\n"      puts $f "PROG =\t$name"      puts $f "SRCS =\t[lsort $list]"      foreach i $make {puts $f $i} @@ -184,7 +184,7 @@ proc mk_prog {ddir name list {make ""}} {  proc mk_lib {ddir name list {make ""}} {      sh "mkdir $ddir/$name"      set f [open $ddir/$name/Makefile w] -    puts $f "#\n# \$Id$\n#\n" +    puts $f "#\n# \$Id: gnu2bmake.tcl,v 1.3.6.1 1998/03/01 17:50:16 jkh Exp $\n#\n"      puts $f "SRCS =\t[lsort $list]"      puts $f "LIB =\t$name"      foreach i $make {puts $f $i} diff --git a/gnu/gnu2bmake/libg++-2.6.tcl b/gnu/gnu2bmake/libg++-2.6.tcl index b5d21c29bb1a..135d9c8dc9ae 100644 --- a/gnu/gnu2bmake/libg++-2.6.tcl +++ b/gnu/gnu2bmake/libg++-2.6.tcl @@ -7,7 +7,7 @@  # this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp  # ----------------------------------------------------------------------------  # -# $Id$ +# $Id: libg++-2.6.tcl,v 1.1.8.1 1998/03/01 17:50:19 jkh Exp $  #  source gnu2bmake.tcl diff --git a/gnu/include/Makefile b/gnu/include/Makefile index e5cb10555bcc..8e8f35aa7e03 100644 --- a/gnu/include/Makefile +++ b/gnu/include/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.4 1996/08/30 19:26:49 peter Exp $ +#	$Id: Makefile,v 1.5 1996/08/30 21:57:39 peter Exp $  NOOBJ=	noobj diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile index d540430153ec..d0b8df07766b 100644 --- a/gnu/lib/Makefile +++ b/gnu/lib/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.12 1996/09/19 16:19:40 peter Exp $ +#	$Id: Makefile,v 1.13 1996/10/04 08:44:26 peter Exp $  SUBDIR= libdialog libg++ libgmp libmp libobjc libregex libreadline libstdc++ diff --git a/gnu/lib/Makefile.inc b/gnu/lib/Makefile.inc index 605c0cd382ab..ddf5b3053a85 100644 --- a/gnu/lib/Makefile.inc +++ b/gnu/lib/Makefile.inc @@ -1,4 +1,4 @@ -#	$Id: Makefile.inc,v 1.3 1994/05/28 09:56:30 csgr Exp $ +#	$Id: Makefile.inc,v 1.4 1994/08/05 21:33:53 wollman Exp $  SHLIB_MAJOR?= 2  SHLIB_MINOR?= 0 diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index 599332e3f448..0e572af258c6 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -1,5 +1,5 @@  # Makefile for libdialog -# $Id: Makefile,v 1.18 1996/08/13 12:46:10 jkh Exp $ +# $Id: Makefile,v 1.19 1996/08/30 02:06:46 peter Exp $  LIB=    dialog  MAN3=	dialog.3 diff --git a/gnu/lib/libdialog/TESTS/Makefile b/gnu/lib/libdialog/TESTS/Makefile index a076c008e6cf..8b4ea8a8e210 100644 --- a/gnu/lib/libdialog/TESTS/Makefile +++ b/gnu/lib/libdialog/TESTS/Makefile @@ -1,6 +1,6 @@  # Really quick and evil Makefile for building all the tests.  I wish that bmake was friendlier to  # the concept of multiple progs/libs in the same directory. -# $Id: Makefile,v 1.5 1996/12/14 16:40:05 jkh Exp $ +# $Id: Makefile,v 1.3.2.2 1996/12/14 23:54:42 jkh Exp $  PROGS=	msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \  	input1 input2 check1 check2 check3 radio1 radio2 radio3 diff --git a/gnu/lib/libdialog/TESTS/check1.c b/gnu/lib/libdialog/TESTS/check1.c index e8a0751e2914..374fb47a3bd9 100644 --- a/gnu/lib/libdialog/TESTS/check1.c +++ b/gnu/lib/libdialog/TESTS/check1.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: check1.c,v 1.2 1996/04/07 03:20:50 jkh Exp $ + * $Id: check1.c,v 1.3 1996/04/16 12:17:20 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/check2.c b/gnu/lib/libdialog/TESTS/check2.c index edad6cf5a115..8a9961aa4330 100644 --- a/gnu/lib/libdialog/TESTS/check2.c +++ b/gnu/lib/libdialog/TESTS/check2.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: check2.c,v 1.1 1996/01/01 03:45:23 jkh Exp $ + * $Id: check2.c,v 1.2 1996/04/16 12:17:21 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/check3.c b/gnu/lib/libdialog/TESTS/check3.c index 6ba01ce11ace..7930b1e09212 100644 --- a/gnu/lib/libdialog/TESTS/check3.c +++ b/gnu/lib/libdialog/TESTS/check3.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: check3.c,v 1.1 1996/01/01 03:45:23 jkh Exp $ + * $Id: check3.c,v 1.2 1996/04/16 12:17:21 jkh Exp $   *   */ diff --git a/gnu/lib/libdialog/TESTS/dselect.c b/gnu/lib/libdialog/TESTS/dselect.c index 8b673f62bbcc..6e646bc655dd 100644 --- a/gnu/lib/libdialog/TESTS/dselect.c +++ b/gnu/lib/libdialog/TESTS/dselect.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: dselect.c,v 1.1 1996/01/01 03:45:24 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/fselect.c b/gnu/lib/libdialog/TESTS/fselect.c index d07d726ec856..ed11ebdf556a 100644 --- a/gnu/lib/libdialog/TESTS/fselect.c +++ b/gnu/lib/libdialog/TESTS/fselect.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: fselect.c,v 1.1 1996/01/01 03:45:24 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/gauge.c b/gnu/lib/libdialog/TESTS/gauge.c index b41209ddf012..880ff6abd308 100644 --- a/gnu/lib/libdialog/TESTS/gauge.c +++ b/gnu/lib/libdialog/TESTS/gauge.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: gauge.c,v 1.1 1996/01/01 03:45:25 jkh Exp $ + * $Id: gauge.c,v 1.2 1996/02/08 11:55:15 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/input1.c b/gnu/lib/libdialog/TESTS/input1.c index edb45f583fc9..8e751195e208 100644 --- a/gnu/lib/libdialog/TESTS/input1.c +++ b/gnu/lib/libdialog/TESTS/input1.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: input1.c,v 1.1 1996/01/01 03:45:25 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/input2.c b/gnu/lib/libdialog/TESTS/input2.c index c20e484092ec..8b02a50b8dd1 100644 --- a/gnu/lib/libdialog/TESTS/input2.c +++ b/gnu/lib/libdialog/TESTS/input2.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: input1.c,v 1.1 1996/01/01 03:45:25 jkh Exp $ + * $Id: input2.c,v 1.1 1996/12/14 16:14:21 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/menu1.c b/gnu/lib/libdialog/TESTS/menu1.c index a06eadef80f5..7a21eb8ae6ce 100644 --- a/gnu/lib/libdialog/TESTS/menu1.c +++ b/gnu/lib/libdialog/TESTS/menu1.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: menu1.c,v 1.3 1996/04/16 12:17:22 jkh Exp $ + * $Id: menu1.c,v 1.4 1996/04/18 13:21:25 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/menu2.c b/gnu/lib/libdialog/TESTS/menu2.c index c1602f77146f..4b4c5b7e264d 100644 --- a/gnu/lib/libdialog/TESTS/menu2.c +++ b/gnu/lib/libdialog/TESTS/menu2.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: menu2.c,v 1.3 1996/04/16 12:17:23 jkh Exp $ + * $Id: menu2.c,v 1.4 1996/04/18 13:21:26 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/menu3.c b/gnu/lib/libdialog/TESTS/menu3.c index c91db64b840d..3bf3609728ec 100644 --- a/gnu/lib/libdialog/TESTS/menu3.c +++ b/gnu/lib/libdialog/TESTS/menu3.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: menu3.c,v 1.4 1996/04/18 13:21:26 jkh Exp $ + * $Id: menu3.c,v 1.5 1996/07/02 01:03:56 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/msg.c b/gnu/lib/libdialog/TESTS/msg.c index 9c2edc417c9d..7ebeb44d0509 100644 --- a/gnu/lib/libdialog/TESTS/msg.c +++ b/gnu/lib/libdialog/TESTS/msg.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: msg.c,v 1.1 1996/01/01 03:45:28 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/prgbox.c b/gnu/lib/libdialog/TESTS/prgbox.c index 6a751c32687d..2634b6a7233a 100644 --- a/gnu/lib/libdialog/TESTS/prgbox.c +++ b/gnu/lib/libdialog/TESTS/prgbox.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: prgbox.c,v 1.1 1996/01/01 03:45:28 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/radio1.c b/gnu/lib/libdialog/TESTS/radio1.c index 19532073971c..3875fae99879 100644 --- a/gnu/lib/libdialog/TESTS/radio1.c +++ b/gnu/lib/libdialog/TESTS/radio1.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: radio1.c,v 1.2 1996/04/07 03:20:57 jkh Exp $ + * $Id: radio1.c,v 1.3 1996/04/16 12:17:25 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/radio2.c b/gnu/lib/libdialog/TESTS/radio2.c index 3f97048a4c98..04ca84d7dcdc 100644 --- a/gnu/lib/libdialog/TESTS/radio2.c +++ b/gnu/lib/libdialog/TESTS/radio2.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: radio2.c,v 1.2 1996/04/07 03:20:59 jkh Exp $ + * $Id: radio2.c,v 1.3 1996/04/16 12:17:26 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/radio3.c b/gnu/lib/libdialog/TESTS/radio3.c index 6a50287d1a6f..e8e117fac6c0 100644 --- a/gnu/lib/libdialog/TESTS/radio3.c +++ b/gnu/lib/libdialog/TESTS/radio3.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: radio3.c,v 1.2 1996/04/07 03:21:01 jkh Exp $ + * $Id: radio3.c,v 1.3 1996/04/16 12:17:27 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/text.c b/gnu/lib/libdialog/TESTS/text.c index f63b5334b21d..33ab478414f4 100644 --- a/gnu/lib/libdialog/TESTS/text.c +++ b/gnu/lib/libdialog/TESTS/text.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: text.c,v 1.1 1996/01/01 03:45:32 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/TESTS/yesno.c b/gnu/lib/libdialog/TESTS/yesno.c index 841451a8c06f..ad14aa69f965 100644 --- a/gnu/lib/libdialog/TESTS/yesno.c +++ b/gnu/lib/libdialog/TESTS/yesno.c @@ -13,7 +13,7 @@   * the author assume any responsibility for damages incurred with   * its use.   * - * $Id: test1.c,v 1.2 1995/12/23 14:53:07 jkh Exp $ + * $Id: yesno.c,v 1.1 1996/01/01 03:45:32 jkh Exp $   */  #include <stdio.h> diff --git a/gnu/lib/libdialog/dialog.3 b/gnu/lib/libdialog/dialog.3 index 7862362aec25..36fd78300beb 100644 --- a/gnu/lib/libdialog/dialog.3 +++ b/gnu/lib/libdialog/dialog.3 @@ -11,7 +11,7 @@  .\" nor does the author assume any responsibility for damages incurred with  .\" its use.  .\" -.\" $Id: dialog.3,v 1.3.2.1 1998/02/15 21:37:54 steve Exp $ +.\" $Id: dialog.3,v 1.3.2.2 1998/06/06 06:09:14 jkoshy Exp $  .\"  .Dd December 18, 1995  .Dt dialog 3 diff --git a/gnu/lib/libg++/Makefile b/gnu/lib/libg++/Makefile index 5c830ee58200..8df1893ebabe 100644 --- a/gnu/lib/libg++/Makefile +++ b/gnu/lib/libg++/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.16.2.1 1997/05/23 08:35:08 asami Exp $ +# $Id: Makefile,v 1.16.2.2 1997/06/14 17:51:31 jdp Exp $  #  GPPDIR=	${.CURDIR}/../../../contrib/libg++ diff --git a/gnu/lib/libg++/doc/Makefile b/gnu/lib/libg++/doc/Makefile index b045be9ca8ff..3d81dd7195d2 100644 --- a/gnu/lib/libg++/doc/Makefile +++ b/gnu/lib/libg++/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/10/04 08:43:37 peter Exp $ +# $Id: Makefile,v 1.1.2.1 1997/04/11 16:58:00 asami Exp $  INFO = g++FAQ libg++ iostream  INFOSECTION= "Gcc Documentation" diff --git a/gnu/lib/libgmp/Makefile b/gnu/lib/libgmp/Makefile index 86ac039b370b..20d664a25e75 100644 --- a/gnu/lib/libgmp/Makefile +++ b/gnu/lib/libgmp/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.7 1996/10/20 09:27:45 markm Exp $ +# $Id: Makefile,v 1.8 1996/10/24 18:00:43 markm Exp $  #  LIB=	gmp diff --git a/gnu/lib/libgmp/Makefile.inc b/gnu/lib/libgmp/Makefile.inc index b60fe3c7b171..65cca3f6e2eb 100644 --- a/gnu/lib/libgmp/Makefile.inc +++ b/gnu/lib/libgmp/Makefile.inc @@ -1,5 +1,5 @@  # -# $Id$ +# $Id: Makefile.inc,v 1.1 1996/10/20 09:27:46 markm Exp $  #  SHLIB_MAJOR=	3 diff --git a/gnu/lib/libgmp/doc/Makefile b/gnu/lib/libgmp/doc/Makefile index 2e098c417fdc..3548362eb711 100644 --- a/gnu/lib/libgmp/doc/Makefile +++ b/gnu/lib/libgmp/doc/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.3 1996/10/20 09:28:03 markm Exp $ +# $Id: Makefile,v 1.3.2.1 1997/04/11 16:58:03 asami Exp $  #  INFO = gmp  INFOSECTION= "Programming & development tools." diff --git a/gnu/lib/libmp/Makefile b/gnu/lib/libmp/Makefile index f7ffbcde1511..bc5a1e6bfd46 100644 --- a/gnu/lib/libmp/Makefile +++ b/gnu/lib/libmp/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.7 1996/10/24 18:03:53 markm Exp $ +# $Id: Makefile,v 1.7.2.1 1996/12/10 17:24:10 joerg Exp $  #  LIB=	mp diff --git a/gnu/lib/libobjc/Makefile b/gnu/lib/libobjc/Makefile index 2083d234450c..559d7fb80049 100644 --- a/gnu/lib/libobjc/Makefile +++ b/gnu/lib/libobjc/Makefile @@ -1,5 +1,5 @@  # Makefile for libobjc -# $Id$ +# $Id: Makefile,v 1.1 1996/09/19 16:19:49 peter Exp $  GCCDIR=	${.CURDIR}/../../../contrib/gcc diff --git a/gnu/lib/libreadline/Makefile b/gnu/lib/libreadline/Makefile index 83d3bf01fcfe..14c567cabc45 100644 --- a/gnu/lib/libreadline/Makefile +++ b/gnu/lib/libreadline/Makefile @@ -1,4 +1,4 @@ -#       $Id: Makefile,v 1.23 1996/08/30 18:33:31 ache Exp $ +#       $Id: Makefile,v 1.23.2.1 1997/04/11 16:42:04 asami Exp $  SRCDIR= ${.CURDIR}/../../../contrib/libreadline  .PATH: ${SRCDIR} diff --git a/gnu/lib/libreadline/doc/Makefile b/gnu/lib/libreadline/doc/Makefile index 3fa54b62ad7c..b8a44f959aba 100644 --- a/gnu/lib/libreadline/doc/Makefile +++ b/gnu/lib/libreadline/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.7.6.1 1997/04/11 16:43:15 asami Exp $  SUBDIR = history readline diff --git a/gnu/lib/libreadline/doc/history/Makefile b/gnu/lib/libreadline/doc/history/Makefile index 4b8112af618d..8b366ff4fe38 100644 --- a/gnu/lib/libreadline/doc/history/Makefile +++ b/gnu/lib/libreadline/doc/history/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 15:43:06 peter Exp $  SRCDIR= ${.CURDIR}/../../../../../contrib/libreadline/doc diff --git a/gnu/lib/libreadline/doc/readline/Makefile b/gnu/lib/libreadline/doc/readline/Makefile index 8e5104136239..527d79b1df3d 100644 --- a/gnu/lib/libreadline/doc/readline/Makefile +++ b/gnu/lib/libreadline/doc/readline/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 15:43:07 peter Exp $  SRCDIR= ${.CURDIR}/../../../../../contrib/libreadline/doc diff --git a/gnu/lib/libregex/Makefile b/gnu/lib/libregex/Makefile index ccbd62e3fd6c..c553a8df2f2d 100644 --- a/gnu/lib/libregex/Makefile +++ b/gnu/lib/libregex/Makefile @@ -1,4 +1,4 @@ -# $Header: /home/ncvs/src/gnu/lib/libregex/Makefile,v 1.19 1996/11/16 22:53:42 joerg Exp $ +# $Header: /home/ncvs/src/gnu/lib/libregex/Makefile,v 1.18.2.1 1996/11/20 15:05:46 joerg Exp $  LIB=	gnuregex diff --git a/gnu/lib/libregex/test/Makefile b/gnu/lib/libregex/test/Makefile index e8516a86d2d9..675cdc17cd96 100644 --- a/gnu/lib/libregex/test/Makefile +++ b/gnu/lib/libregex/test/Makefile @@ -1,4 +1,4 @@ -#	$Id: $ +#	$Id: Makefile,v 1.3 1996/05/07 23:14:48 wosch Exp $  # Generated automatically from Makefile.in by configure.  # Makefile for regex testing. diff --git a/gnu/lib/libregex/test/Makefile.in b/gnu/lib/libregex/test/Makefile.in index 5fc51be61934..630adac5e66c 100644 --- a/gnu/lib/libregex/test/Makefile.in +++ b/gnu/lib/libregex/test/Makefile.in @@ -1,4 +1,4 @@ -#	$Id: $ +#	$Id: Makefile.in,v 1.3 1996/05/07 23:14:49 wosch Exp $  # Makefile for regex testing.  # diff --git a/gnu/lib/libstdc++/Makefile b/gnu/lib/libstdc++/Makefile index 835cee66e0f1..7072623118f9 100644 --- a/gnu/lib/libstdc++/Makefile +++ b/gnu/lib/libstdc++/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.1.2.3 1997/06/14 17:53:24 jdp Exp $ +# $Id: Makefile,v 1.1.2.4 1997/08/07 12:52:32 bde Exp $  #  GPPDIR=	${.CURDIR}/../../../contrib/libg++ diff --git a/gnu/libexec/Makefile b/gnu/libexec/Makefile index 1744c529be51..006d2b9c56c0 100644 --- a/gnu/libexec/Makefile +++ b/gnu/libexec/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.2 1995/01/31 09:29:38 wpaul Exp $ +#	$Id: Makefile,v 1.3 1995/12/25 02:56:12 wpaul Exp $  SUBDIR=	uucp diff --git a/gnu/libexec/Makefile.inc b/gnu/libexec/Makefile.inc index 1ac3dc7c91c8..ce2cd44c3076 100644 --- a/gnu/libexec/Makefile.inc +++ b/gnu/libexec/Makefile.inc @@ -1,3 +1,3 @@ -#	$Id$ +#	$Id: Makefile.inc,v 1.1 1994/01/30 01:08:21 rgrimes Exp $  BINDIR?=	/usr/libexec diff --git a/gnu/libexec/uucp/Makefile b/gnu/libexec/uucp/Makefile index a6b8ce538428..bf3f0aa508ee 100644 --- a/gnu/libexec/uucp/Makefile +++ b/gnu/libexec/uucp/Makefile @@ -1,5 +1,5 @@  # This is the Makefile for Taylor UUCP -# $Id: Makefile,v 1.3 1995/01/01 21:58:01 ache Exp $ +# $Id: Makefile,v 1.4 1996/08/17 22:27:05 wosch Exp $  # subdir 'sample' called by /usr/src/etc/Makefile  SUBDIR=		libunix libuucp libuuconf \ diff --git a/gnu/libexec/uucp/common_sources/chat.c b/gnu/libexec/uucp/common_sources/chat.c index 4692fe76390a..e52006b31e8d 100644 --- a/gnu/libexec/uucp/common_sources/chat.c +++ b/gnu/libexec/uucp/common_sources/chat.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char chat_rcsid[] = "$Id: chat.c,v 1.46 1995/06/21 19:14:29 ian Rel $"; +const char chat_rcsid[] = "$Id: chat.c,v 1.4 1995/08/19 21:23:41 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/common_sources/conn.c b/gnu/libexec/uucp/common_sources/conn.c index de91b117b651..4e0733d59f05 100644 --- a/gnu/libexec/uucp/common_sources/conn.c +++ b/gnu/libexec/uucp/common_sources/conn.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char conn_rcsid[] = "$Id: conn.c,v 1.15 1995/06/21 19:14:35 ian Rel $"; +const char conn_rcsid[] = "$Id: conn.c,v 1.4 1995/08/19 21:23:46 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/common_sources/copy.c b/gnu/libexec/uucp/common_sources/copy.c index b1787f9561c8..227bee6a3c75 100644 --- a/gnu/libexec/uucp/common_sources/copy.c +++ b/gnu/libexec/uucp/common_sources/copy.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char copy_rcsid[] = "$Id: copy.c,v 1.18 1995/08/02 01:17:31 ian Rel $"; +const char copy_rcsid[] = "$Id: copy.c,v 1.3 1995/08/19 21:23:49 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/common_sources/log.c b/gnu/libexec/uucp/common_sources/log.c index 1c35b876d519..c99708bc905a 100644 --- a/gnu/libexec/uucp/common_sources/log.c +++ b/gnu/libexec/uucp/common_sources/log.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char log_rcsid[] = "$Id: log.c,v 1.61 1995/06/21 19:14:58 ian Rel $"; +const char log_rcsid[] = "$Id: log.c,v 1.4 1995/08/19 21:23:54 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/common_sources/prot.c b/gnu/libexec/uucp/common_sources/prot.c index 54156a4b18d5..ba6bc65918e0 100644 --- a/gnu/libexec/uucp/common_sources/prot.c +++ b/gnu/libexec/uucp/common_sources/prot.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char prot_rcsid[] = "$Id: prot.c,v 1.32 1995/06/21 19:15:07 ian Rel $"; +const char prot_rcsid[] = "$Id: prot.c,v 1.3 1995/08/19 21:23:59 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/common_sources/util.c b/gnu/libexec/uucp/common_sources/util.c index 21dbebc3dae7..b65bf8172f45 100644 --- a/gnu/libexec/uucp/common_sources/util.c +++ b/gnu/libexec/uucp/common_sources/util.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char util_rcsid[] = "$Id: util.c,v 1.8 1995/06/21 19:16:18 ian Rel $"; +const char util_rcsid[] = "$Id: util.c,v 1.3 1995/08/19 21:24:13 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/contrib/Makefile.uurt b/gnu/libexec/uucp/contrib/Makefile.uurt index e97ff7ed2ff0..473edbb9cae1 100644 --- a/gnu/libexec/uucp/contrib/Makefile.uurt +++ b/gnu/libexec/uucp/contrib/Makefile.uurt @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1994/04/14 17:47:52 kdburg Exp $ +# $Id: Makefile.uurt,v 1.3 1995/08/19 21:24:24 ache Exp $  # Makefile for uurate 1.10  # diff --git a/gnu/libexec/uucp/contrib/uupoll.shar b/gnu/libexec/uucp/contrib/uupoll.shar index a03a0737b1f2..1d2666776793 100644 --- a/gnu/libexec/uucp/contrib/uupoll.shar +++ b/gnu/libexec/uucp/contrib/uupoll.shar @@ -493,10 +493,13 @@ X                  not scan the uucico log.  X  X  #if !defined(lint) -static char rcsid[] = "$Id: autopoll.c,v 2.8 1994/04/14 17:22:54 kdburg Rel $"; +static char rcsid[] = "$Id: uupoll.shar,v 1.2 1995/08/19 21:24:34 ache Exp $";  #endif /* not lint */  X -/* $Log: autopoll.c,v $ +/* $Log: uupoll.shar,v $ +/* Revision 1.2  1995/08/19 21:24:34  ache +/* Commit delta: current -> 1.06 + FreeBSD configuration +/*  X * Revision 2.8  1994/04/14  17:22:54  kdburg  X * corrected misspelled AT_OPTION  X * @@ -1628,8 +1631,11 @@ sed 's/^X//' << 'SHAR_EOF' > 'uupoll/conf.h' &&  #ifndef CONF  X  #define CONF  X -/* $Id: conf.h,v 1.9 1994/04/14 17:24:58 kdburg Rel $ */ -/* $Log: conf.h,v $ +/* $Id: uupoll.shar,v 1.2 1995/08/19 21:24:34 ache Exp $ */ +/* $Log: uupoll.shar,v $ +/* Revision 1.2  1995/08/19 21:24:34  ache +/* Commit delta: current -> 1.06 + FreeBSD configuration +/*  X * Revision 1.9  1994/04/14  17:24:58  kdburg  X * added comment to the AT_OPTION  X * @@ -1986,10 +1992,13 @@ X                - No alias expansion is done on the given names.  */  X  #if !defined(lint) -static char rcsid[] = "$Id: uupoll.c,v 2.7 1994/04/14 17:22:04 kdburg Rel $"; +static char rcsid[] = "$Id: uupoll.shar,v 1.2 1995/08/19 21:24:34 ache Exp $";  #endif /* not lint */  X -/* $Log: uupoll.c,v $ +/* $Log: uupoll.shar,v $ +/* Revision 1.2  1995/08/19 21:24:34  ache +/* Commit delta: current -> 1.06 + FreeBSD configuration +/*  X * Revision 2.7  1994/04/14  17:22:04  kdburg  X * major rework done  X * diff --git a/gnu/libexec/uucp/contrib/uurate.c b/gnu/libexec/uucp/contrib/uurate.c index 907e24298e07..9f335f862794 100644 --- a/gnu/libexec/uucp/contrib/uurate.c +++ b/gnu/libexec/uucp/contrib/uurate.c @@ -84,6 +84,9 @@   *        get knowledge of   */  /* $Log: uurate.c,v $ +/* Revision 1.4  1995/08/19 21:24:38  ache +/* Commit delta: current -> 1.06 + FreeBSD configuration +/*   * Revision 1.15  1994/04/07  21:47:11  kdburg   * printed 'no data avail' while there was data; layout chnaged   * (cosmetic only) @@ -139,7 +142,7 @@   * */  char version[] = "@(#) Taylor UUCP Log File Summary Filter, Version 1.2.2"; -static char rcsid[] = "$Id: uurate.c,v 1.15 1994/04/07 21:47:11 kdburg Rel $"; +static char rcsid[] = "$Id: uurate.c,v 1.4 1995/08/19 21:24:38 ache Exp $";  #include <ctype.h>            /* Character Classification      */  #include <math.h>  #include "uucp.h" diff --git a/gnu/libexec/uucp/contrib/uurate.man b/gnu/libexec/uucp/contrib/uurate.man index e12a4e1c0a84..2a150a84008b 100644 --- a/gnu/libexec/uucp/contrib/uurate.man +++ b/gnu/libexec/uucp/contrib/uurate.man @@ -1,4 +1,4 @@ -''' $Id: uurate.man,v 1.4 1993/09/28 17:38:31 kdburg Rel $ +''' $Id: uurate.man,v 1.3 1995/08/19 21:24:40 ache Exp $  .TH uurate 1  .SH NAME  uurate \- Report Taylor UUCP statistics diff --git a/gnu/libexec/uucp/contrib/uusnap.c b/gnu/libexec/uucp/contrib/uusnap.c index 123741cbff28..c12f7bd8405d 100644 --- a/gnu/libexec/uucp/contrib/uusnap.c +++ b/gnu/libexec/uucp/contrib/uusnap.c @@ -25,7 +25,7 @@  #include "uucp.h"  #if USE_RCS_ID -char uusnap_rcsid[] = "$Id: uusnap.c,v 1.9 92/05/05 22:51:50 hwr Exp Locker: hwr $"; +char uusnap_rcsid[] = "$Id: uusnap.c,v 1.4 1995/08/19 21:24:42 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/cu/Makefile b/gnu/libexec/uucp/cu/Makefile index 1637588090b0..126107875cf1 100644 --- a/gnu/libexec/uucp/cu/Makefile +++ b/gnu/libexec/uucp/cu/Makefile @@ -1,5 +1,5 @@  # Makefile for cu -# $Id: Makefile,v 1.4 1995/08/19 21:24:49 ache Exp $ +# $Id: Makefile,v 1.5 1995/09/14 22:18:29 ache Exp $  BINDIR=		$(bindir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/cu/cu.1 b/gnu/libexec/uucp/cu/cu.1 index f756d4c941ee..625e99416f27 100644 --- a/gnu/libexec/uucp/cu/cu.1 +++ b/gnu/libexec/uucp/cu/cu.1 @@ -1,4 +1,4 @@ -''' $Id: cu.1,v 1.9 1995/08/02 00:16:58 ian Rel $ +''' $Id: cu.1,v 1.4 1995/08/19 21:24:50 ache Exp $  .TH cu 1 "Taylor UUCP 1.06"  .SH NAME  cu \- Call up another system diff --git a/gnu/libexec/uucp/cu/cu.c b/gnu/libexec/uucp/cu/cu.c index b82f180299c9..e8a4623f67f4 100644 --- a/gnu/libexec/uucp/cu/cu.c +++ b/gnu/libexec/uucp/cu/cu.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char cu_rcsid[] = "$Id: cu.c,v 1.42 1995/08/02 01:19:50 ian Rel $"; +const char cu_rcsid[] = "$Id: cu.c,v 1.5 1995/08/19 21:24:51 ache Exp $";  #endif  #include "cu.h" diff --git a/gnu/libexec/uucp/doc/uucp.texi b/gnu/libexec/uucp/doc/uucp.texi index 50ff55646f1b..7b0ac7cef729 100644 --- a/gnu/libexec/uucp/doc/uucp.texi +++ b/gnu/libexec/uucp/doc/uucp.texi @@ -5649,8 +5649,8 @@ Keywords: UUCP, protocol, FAQ  Approved: news-answers-request@@MIT.Edu  Archive-name: uucp-internals -Version: $Revision: 1.2 $ -Last-modified: $Date: 1995/08/19 21:24:55 $ +Version: $Revision: 1.3 $ +Last-modified: $Date: 1995/08/21 11:28:17 $  @end format  @end ifset diff --git a/gnu/libexec/uucp/libunix/Makefile b/gnu/libexec/uucp/libunix/Makefile index f4cc4a62ef38..aef9a6f3af90 100644 --- a/gnu/libexec/uucp/libunix/Makefile +++ b/gnu/libexec/uucp/libunix/Makefile @@ -1,5 +1,5 @@  # This subdirectory contains Unix specific support functions. -# $Id: Makefile,v 1.3 1995/05/13 12:57:23 ache Exp $ +# $Id: Makefile,v 1.4 1995/08/19 21:25:01 ache Exp $  LIB=		unix  SRCS = access.c addbas.c app3.c app4.c basnam.c bytfre.c corrup.c \ diff --git a/gnu/libexec/uucp/libunix/cusub.c b/gnu/libexec/uucp/libunix/cusub.c index b1bce904c2b1..654b72a8c207 100644 --- a/gnu/libexec/uucp/libunix/cusub.c +++ b/gnu/libexec/uucp/libunix/cusub.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char cusub_rcsid[] = "$Id: cusub.c,v 1.24 1995/06/21 19:18:53 ian Rel $"; +const char cusub_rcsid[] = "$Id: cusub.c,v 1.4 1995/08/19 21:25:06 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/lock.c b/gnu/libexec/uucp/libunix/lock.c index 1be6fbc7ba06..23dee3fda5e1 100644 --- a/gnu/libexec/uucp/libunix/lock.c +++ b/gnu/libexec/uucp/libunix/lock.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char lock_rcsid[] = "$Id: lock.c,v 1.20 1995/06/21 19:19:38 ian Rel $"; +const char lock_rcsid[] = "$Id: lock.c,v 1.4 1995/08/19 21:25:36 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/picksb.c b/gnu/libexec/uucp/libunix/picksb.c index 43a0b2a18045..a660283c16df 100644 --- a/gnu/libexec/uucp/libunix/picksb.c +++ b/gnu/libexec/uucp/libunix/picksb.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char picksb_rcsid[] = "$Id: picksb.c,v 1.10 1995/06/21 19:19:54 ian Rel $"; +const char picksb_rcsid[] = "$Id: picksb.c,v 1.4 1995/08/19 21:25:47 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/pipe.c b/gnu/libexec/uucp/libunix/pipe.c index 7f69040b88f1..b59b46980a12 100644 --- a/gnu/libexec/uucp/libunix/pipe.c +++ b/gnu/libexec/uucp/libunix/pipe.c @@ -27,7 +27,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char pipe_rcsid[] = "$Id: pipe.c,v 1.6 1995/06/21 19:19:57 ian Rel $"; +const char pipe_rcsid[] = "$Id: pipe.c,v 1.2 1995/08/19 21:25:48 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/serial.c b/gnu/libexec/uucp/libunix/serial.c index 1798f31c266e..f192d8bf726d 100644 --- a/gnu/libexec/uucp/libunix/serial.c +++ b/gnu/libexec/uucp/libunix/serial.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char serial_rcsid[] = "$Id: serial.c,v 1.7 1996/10/12 10:41:56 joerg Exp $"; +const char serial_rcsid[] = "$Id: serial.c,v 1.7.2.1 1996/12/03 15:23:47 phk Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/spool.c b/gnu/libexec/uucp/libunix/spool.c index 8c0a82f7ea66..0f51976d5aa9 100644 --- a/gnu/libexec/uucp/libunix/spool.c +++ b/gnu/libexec/uucp/libunix/spool.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char spool_rcsid[] = "$Id: spool.c,v 1.11 1995/06/30 21:22:54 ian Rel $"; +const char spool_rcsid[] = "$Id: spool.c,v 1.4 1995/08/19 21:26:02 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/statsb.c b/gnu/libexec/uucp/libunix/statsb.c index 4fed4379a3aa..fdb71dc758f7 100644 --- a/gnu/libexec/uucp/libunix/statsb.c +++ b/gnu/libexec/uucp/libunix/statsb.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char statsb_rcsid[] = "$Id: statsb.c,v 1.19 1995/06/21 19:20:39 ian Rel $"; +const char statsb_rcsid[] = "$Id: statsb.c,v 1.3 1995/08/19 21:26:05 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/tcp.c b/gnu/libexec/uucp/libunix/tcp.c index 6ec39f26a63b..d38536ce231b 100644 --- a/gnu/libexec/uucp/libunix/tcp.c +++ b/gnu/libexec/uucp/libunix/tcp.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char tcp_rcsid[] = "$Id: tcp.c,v 1.5 1995/06/21 19:20:46 ian Rel $"; +const char tcp_rcsid[] = "$Id: tcp.c,v 1.1 1995/08/19 21:26:10 ache Exp $";  #endif  #if HAVE_TCP diff --git a/gnu/libexec/uucp/libunix/tli.c b/gnu/libexec/uucp/libunix/tli.c index 3e546c844991..a67e8c88c453 100644 --- a/gnu/libexec/uucp/libunix/tli.c +++ b/gnu/libexec/uucp/libunix/tli.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char tli_rcsid[] = "$Id: tli.c,v 1.4 1995/06/21 19:20:50 ian Rel $"; +const char tli_rcsid[] = "$Id: tli.c,v 1.1 1995/08/19 21:26:11 ache Exp $";  #endif  #if HAVE_TLI diff --git a/gnu/libexec/uucp/libunix/work.c b/gnu/libexec/uucp/libunix/work.c index 4f380fb8127f..e28e480d1e34 100644 --- a/gnu/libexec/uucp/libunix/work.c +++ b/gnu/libexec/uucp/libunix/work.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char work_rcsid[] = "$Id: work.c,v 1.20 1995/06/30 21:35:14 ian Rel $"; +const char work_rcsid[] = "$Id: work.c,v 1.4 1995/08/19 21:26:21 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/xqtfil.c b/gnu/libexec/uucp/libunix/xqtfil.c index 7b1b1415ef97..71a6b48e844d 100644 --- a/gnu/libexec/uucp/libunix/xqtfil.c +++ b/gnu/libexec/uucp/libunix/xqtfil.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char xqtfil_rcsid[] = "$Id: xqtfil.c,v 1.10 1995/07/19 04:18:37 ian Rel $"; +const char xqtfil_rcsid[] = "$Id: xqtfil.c,v 1.4 1995/08/19 21:26:23 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libunix/xqtsub.c b/gnu/libexec/uucp/libunix/xqtsub.c index a2fd50a507cc..ea0794660b55 100644 --- a/gnu/libexec/uucp/libunix/xqtsub.c +++ b/gnu/libexec/uucp/libunix/xqtsub.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char xqtsub_rcsid[] = "$Id: xqtsub.c,v 1.18 1995/06/21 20:21:14 ian Rel $"; +const char xqtsub_rcsid[] = "$Id: xqtsub.c,v 1.4 1995/08/19 21:26:25 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/libuuconf/Makefile b/gnu/libexec/uucp/libuuconf/Makefile index 060214a206c7..1a8cab21aef3 100644 --- a/gnu/libexec/uucp/libuuconf/Makefile +++ b/gnu/libexec/uucp/libuuconf/Makefile @@ -1,5 +1,5 @@  # This is the Makefile for the Taylor UUCP uuconf library -# $Id: Makefile,v 1.2 1994/05/07 18:11:49 ache Exp $ +# $Id: Makefile,v 1.3 1995/08/19 21:26:30 ache Exp $  LIB=		uuconf  SRCS = addblk.c addstr.c allblk.c alloc.c base.c bool.c callin.c \ diff --git a/gnu/libexec/uucp/libuuconf/addblk.c b/gnu/libexec/uucp/libuuconf/addblk.c index 30cb07e35041..91763c7f3cbe 100644 --- a/gnu/libexec/uucp/libuuconf/addblk.c +++ b/gnu/libexec/uucp/libuuconf/addblk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_addblk_rcsid[] = "$Id: addblk.c,v 1.5 1995/06/21 19:21:23 ian Rel $"; +const char _uuconf_addblk_rcsid[] = "$Id: addblk.c,v 1.3 1995/08/19 21:26:32 ache Exp $";  #endif  #include "alloc.h" diff --git a/gnu/libexec/uucp/libuuconf/addstr.c b/gnu/libexec/uucp/libuuconf/addstr.c index dfc479bc5099..80d9d5850bfa 100644 --- a/gnu/libexec/uucp/libuuconf/addstr.c +++ b/gnu/libexec/uucp/libuuconf/addstr.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_addstr_rcsid[] = "$Id: addstr.c,v 1.7 1995/06/21 19:21:26 ian Rel $"; +const char _uuconf_addstr_rcsid[] = "$Id: addstr.c,v 1.3 1995/08/19 21:26:33 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/allblk.c b/gnu/libexec/uucp/libuuconf/allblk.c index 91bbe31d1b48..859f4ebdc317 100644 --- a/gnu/libexec/uucp/libuuconf/allblk.c +++ b/gnu/libexec/uucp/libuuconf/allblk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_allblk_rcsid[] = "$Id: allblk.c,v 1.5 1995/06/21 19:21:28 ian Rel $"; +const char _uuconf_allblk_rcsid[] = "$Id: allblk.c,v 1.3 1995/08/19 21:26:34 ache Exp $";  #endif  #include "alloc.h" diff --git a/gnu/libexec/uucp/libuuconf/alloc.c b/gnu/libexec/uucp/libuuconf/alloc.c index 5a08b76d2a62..f51268676dd4 100644 --- a/gnu/libexec/uucp/libuuconf/alloc.c +++ b/gnu/libexec/uucp/libuuconf/alloc.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_alloc_rcsid[] = "$Id: alloc.c,v 1.5 1995/06/21 19:21:31 ian Rel $"; +const char _uuconf_alloc_rcsid[] = "$Id: alloc.c,v 1.3 1995/08/19 21:26:36 ache Exp $";  #endif  #include "alloc.h" diff --git a/gnu/libexec/uucp/libuuconf/base.c b/gnu/libexec/uucp/libuuconf/base.c index 829d96504b8a..de1dca343cf1 100644 --- a/gnu/libexec/uucp/libuuconf/base.c +++ b/gnu/libexec/uucp/libuuconf/base.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_base_rcsid[] = "$Id: base.c,v 1.5 1995/06/21 19:21:36 ian Rel $"; +const char _uuconf_base_rcsid[] = "$Id: base.c,v 1.3 1995/08/19 21:26:39 ache Exp $";  #endif  /* This turns a cmdtab_offset table into a uuconf_cmdtab table.  Each diff --git a/gnu/libexec/uucp/libuuconf/bool.c b/gnu/libexec/uucp/libuuconf/bool.c index be56d6a809d1..c0a28b536524 100644 --- a/gnu/libexec/uucp/libuuconf/bool.c +++ b/gnu/libexec/uucp/libuuconf/bool.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_bool_rcsid[] = "$Id: bool.c,v 1.5 1995/06/21 19:21:39 ian Rel $"; +const char _uuconf_bool_rcsid[] = "$Id: bool.c,v 1.4 1995/08/19 21:26:41 ache Exp $";  #endif  /* Parse a boolean string into a variable.  This is called by diff --git a/gnu/libexec/uucp/libuuconf/callin.c b/gnu/libexec/uucp/libuuconf/callin.c index 4e0470726063..b49b0e0e2a56 100644 --- a/gnu/libexec/uucp/libuuconf/callin.c +++ b/gnu/libexec/uucp/libuuconf/callin.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_callin_rcsid[] = "$Id: callin.c,v 1.11 1995/06/21 19:21:42 ian Rel $"; +const char _uuconf_callin_rcsid[] = "$Id: callin.c,v 1.4 1995/08/19 21:26:43 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/calout.c b/gnu/libexec/uucp/libuuconf/calout.c index 4b225a9fea5f..0f540b372911 100644 --- a/gnu/libexec/uucp/libuuconf/calout.c +++ b/gnu/libexec/uucp/libuuconf/calout.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_calout_rcsid[] = "$Id: calout.c,v 1.6 1995/06/21 19:21:45 ian Rel $"; +const char _uuconf_calout_rcsid[] = "$Id: calout.c,v 1.4 1995/08/19 21:26:44 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/chatc.c b/gnu/libexec/uucp/libuuconf/chatc.c index 48d0f4fc594e..e97a8b5a13d4 100644 --- a/gnu/libexec/uucp/libuuconf/chatc.c +++ b/gnu/libexec/uucp/libuuconf/chatc.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_chatc_rcsid[] = "$Id: chatc.c,v 1.6 1995/06/21 19:21:48 ian Rel $"; +const char _uuconf_chatc_rcsid[] = "$Id: chatc.c,v 1.3 1995/08/19 21:26:45 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/libuuconf/cmdarg.c b/gnu/libexec/uucp/libuuconf/cmdarg.c index fd7dd40fc648..e2503d61c2db 100644 --- a/gnu/libexec/uucp/libuuconf/cmdarg.c +++ b/gnu/libexec/uucp/libuuconf/cmdarg.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_cmdarg_rcsid[] = "$Id: cmdarg.c,v 1.6 1995/06/21 19:21:50 ian Rel $"; +const char _uuconf_cmdarg_rcsid[] = "$Id: cmdarg.c,v 1.4 1995/08/19 21:26:48 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/libuuconf/cmdfil.c b/gnu/libexec/uucp/libuuconf/cmdfil.c index cb8782b1ee06..143f98ea49cf 100644 --- a/gnu/libexec/uucp/libuuconf/cmdfil.c +++ b/gnu/libexec/uucp/libuuconf/cmdfil.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_cmdfil_rcsid[] = "$Id: cmdfil.c,v 1.6 1995/06/21 19:21:53 ian Rel $"; +const char _uuconf_cmdfil_rcsid[] = "$Id: cmdfil.c,v 1.3 1995/08/19 21:26:50 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/cmdlin.c b/gnu/libexec/uucp/libuuconf/cmdlin.c index 4aaea0ba99e2..a242db132ea7 100644 --- a/gnu/libexec/uucp/libuuconf/cmdlin.c +++ b/gnu/libexec/uucp/libuuconf/cmdlin.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_cmdlin_rcsid[] = "$Id: cmdlin.c,v 1.6 1995/06/21 19:21:55 ian Rel $"; +const char _uuconf_cmdlin_rcsid[] = "$Id: cmdlin.c,v 1.4 1995/08/19 21:26:51 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/debfil.c b/gnu/libexec/uucp/libuuconf/debfil.c index 9ce91462c4ea..527a5e8ef3a5 100644 --- a/gnu/libexec/uucp/libuuconf/debfil.c +++ b/gnu/libexec/uucp/libuuconf/debfil.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_debfil_rcsid[] = "$Id: debfil.c,v 1.6 1995/06/21 19:21:57 ian Rel $"; +const char _uuconf_debfil_rcsid[] = "$Id: debfil.c,v 1.3 1995/08/19 21:26:53 ache Exp $";  #endif  /* Get the name of the UUCP debugging file.  */ diff --git a/gnu/libexec/uucp/libuuconf/deblev.c b/gnu/libexec/uucp/libuuconf/deblev.c index 8a52e961cc62..f543fc78c4cc 100644 --- a/gnu/libexec/uucp/libuuconf/deblev.c +++ b/gnu/libexec/uucp/libuuconf/deblev.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_deblev_rcsid[] = "$Id: deblev.c,v 1.5 1995/06/21 19:22:00 ian Rel $"; +const char _uuconf_deblev_rcsid[] = "$Id: deblev.c,v 1.3 1995/08/19 21:26:54 ache Exp $";  #endif  /* Get the UUCP debugging level.  */ diff --git a/gnu/libexec/uucp/libuuconf/diacod.c b/gnu/libexec/uucp/libuuconf/diacod.c index 8c3cf4f36590..f9f3357b00ee 100644 --- a/gnu/libexec/uucp/libuuconf/diacod.c +++ b/gnu/libexec/uucp/libuuconf/diacod.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_diacod_rcsid[] = "$Id: diacod.c,v 1.9 1995/06/21 19:22:03 ian Rel $"; +const char _uuconf_diacod_rcsid[] = "$Id: diacod.c,v 1.3 1995/08/19 21:26:55 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/dial.c b/gnu/libexec/uucp/libuuconf/dial.c index 11060279dd5e..bb5177c330b2 100644 --- a/gnu/libexec/uucp/libuuconf/dial.c +++ b/gnu/libexec/uucp/libuuconf/dial.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_dial_rcsid[] = "$Id: dial.c,v 1.6 1995/06/21 19:22:06 ian Rel $"; +const char _uuconf_dial_rcsid[] = "$Id: dial.c,v 1.3 1995/08/19 21:26:56 ache Exp $";  #endif  /* Find a dialer by name.  */ diff --git a/gnu/libexec/uucp/libuuconf/diasub.c b/gnu/libexec/uucp/libuuconf/diasub.c index 1375199a2723..882257fa73ec 100644 --- a/gnu/libexec/uucp/libuuconf/diasub.c +++ b/gnu/libexec/uucp/libuuconf/diasub.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_diasub_rcsid[] = "$Id: diasub.c,v 1.6 1995/06/21 19:22:08 ian Rel $"; +const char _uuconf_diasub_rcsid[] = "$Id: diasub.c,v 1.3 1995/08/19 21:26:57 ache Exp $";  #endif  /* Clear the information in a dialer.  */ diff --git a/gnu/libexec/uucp/libuuconf/dnams.c b/gnu/libexec/uucp/libuuconf/dnams.c index 08481234eb4f..9bedd16e2833 100644 --- a/gnu/libexec/uucp/libuuconf/dnams.c +++ b/gnu/libexec/uucp/libuuconf/dnams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_dnams_rcsid[] = "$Id: dnams.c,v 1.5 1995/06/21 19:22:10 ian Rel $"; +const char _uuconf_dnams_rcsid[] = "$Id: dnams.c,v 1.3 1995/08/19 21:26:59 ache Exp $";  #endif  /* Get all known dialer names.  */ diff --git a/gnu/libexec/uucp/libuuconf/errno.c b/gnu/libexec/uucp/libuuconf/errno.c index 8b0d0c389a5a..283833a6e044 100644 --- a/gnu/libexec/uucp/libuuconf/errno.c +++ b/gnu/libexec/uucp/libuuconf/errno.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_errno_rcsid[] = "$Id: errno.c,v 1.5 1995/06/21 19:22:13 ian Rel $"; +const char _uuconf_errno_rcsid[] = "$Id: errno.c,v 1.3 1995/08/19 21:27:00 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/errstr.c b/gnu/libexec/uucp/libuuconf/errstr.c index 6a36acc64101..760dc75b88a3 100644 --- a/gnu/libexec/uucp/libuuconf/errstr.c +++ b/gnu/libexec/uucp/libuuconf/errstr.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_errstr_rcsid[] = "$Id: errstr.c,v 1.5 1995/06/21 19:22:17 ian Rel $"; +const char _uuconf_errstr_rcsid[] = "$Id: errstr.c,v 1.4 1995/08/19 21:27:01 ache Exp $";  #endif  static char *zeprint_num P((char *zbuf, size_t cbuf, int ival)); diff --git a/gnu/libexec/uucp/libuuconf/filnam.c b/gnu/libexec/uucp/libuuconf/filnam.c index ad9380bfc98f..82b6aee73353 100644 --- a/gnu/libexec/uucp/libuuconf/filnam.c +++ b/gnu/libexec/uucp/libuuconf/filnam.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_filnam_rcsid[] = "$Id: filnam.c,v 1.6 1995/06/21 19:22:20 ian Rel $"; +const char _uuconf_filnam_rcsid[] = "$Id: filnam.c,v 1.3 1995/08/19 21:27:02 ache Exp $";  #endif  /* Return the saved file name.  */ diff --git a/gnu/libexec/uucp/libuuconf/freblk.c b/gnu/libexec/uucp/libuuconf/freblk.c index bbd091313f0f..aa7f6583d8ab 100644 --- a/gnu/libexec/uucp/libuuconf/freblk.c +++ b/gnu/libexec/uucp/libuuconf/freblk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_freblk_rcsid[] = "$Id: freblk.c,v 1.7 1995/06/21 19:22:23 ian Rel $"; +const char _uuconf_freblk_rcsid[] = "$Id: freblk.c,v 1.3 1995/08/19 21:27:04 ache Exp $";  #endif  #include "alloc.h" diff --git a/gnu/libexec/uucp/libuuconf/fredia.c b/gnu/libexec/uucp/libuuconf/fredia.c index 2bc6573cb1b7..5098058e6d9a 100644 --- a/gnu/libexec/uucp/libuuconf/fredia.c +++ b/gnu/libexec/uucp/libuuconf/fredia.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_fredia_rcsid[] = "$Id: fredia.c,v 1.5 1995/06/21 19:22:26 ian Rel $"; +const char _uuconf_fredia_rcsid[] = "$Id: fredia.c,v 1.3 1995/08/19 21:27:05 ache Exp $";  #endif  /* Free the memory allocated for a dialer.  */ diff --git a/gnu/libexec/uucp/libuuconf/free.c b/gnu/libexec/uucp/libuuconf/free.c index 3ea45f9f4042..a36c6eb51b55 100644 --- a/gnu/libexec/uucp/libuuconf/free.c +++ b/gnu/libexec/uucp/libuuconf/free.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_free_rcsid[] = "$Id: free.c,v 1.6 1995/06/21 19:22:30 ian Rel $"; +const char _uuconf_free_rcsid[] = "$Id: free.c,v 1.3 1995/08/19 21:27:07 ache Exp $";  #endif  #include "alloc.h" diff --git a/gnu/libexec/uucp/libuuconf/freprt.c b/gnu/libexec/uucp/libuuconf/freprt.c index 399927bdf169..6ead66ee7417 100644 --- a/gnu/libexec/uucp/libuuconf/freprt.c +++ b/gnu/libexec/uucp/libuuconf/freprt.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_freprt_rcsid[] = "$Id: freprt.c,v 1.5 1995/06/21 19:22:33 ian Rel $"; +const char _uuconf_freprt_rcsid[] = "$Id: freprt.c,v 1.3 1995/08/19 21:27:09 ache Exp $";  #endif  /* Free the memory allocated for a port.  */ diff --git a/gnu/libexec/uucp/libuuconf/fresys.c b/gnu/libexec/uucp/libuuconf/fresys.c index e367543b45d8..0711875f2fc7 100644 --- a/gnu/libexec/uucp/libuuconf/fresys.c +++ b/gnu/libexec/uucp/libuuconf/fresys.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_fresys_rcsid[] = "$Id: fresys.c,v 1.5 1995/06/21 19:22:36 ian Rel $"; +const char _uuconf_fresys_rcsid[] = "$Id: fresys.c,v 1.3 1995/08/19 21:27:10 ache Exp $";  #endif  /* Free the memory allocated for a system.  */ diff --git a/gnu/libexec/uucp/libuuconf/grdcmp.c b/gnu/libexec/uucp/libuuconf/grdcmp.c index 39ddd0b30a64..6a25e622fbf4 100644 --- a/gnu/libexec/uucp/libuuconf/grdcmp.c +++ b/gnu/libexec/uucp/libuuconf/grdcmp.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_grdcmp_rcsid[] = "$Id: grdcmp.c,v 1.5 1995/06/21 19:22:39 ian Rel $"; +const char _uuconf_grdcmp_rcsid[] = "$Id: grdcmp.c,v 1.3 1995/08/19 21:27:11 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/libuuconf/hdial.c b/gnu/libexec/uucp/libuuconf/hdial.c index 603aa1210598..c4933783331c 100644 --- a/gnu/libexec/uucp/libuuconf/hdial.c +++ b/gnu/libexec/uucp/libuuconf/hdial.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hdial_rcsid[] = "$Id: hdial.c,v 1.6 1995/06/21 19:22:42 ian Rel $"; +const char _uuconf_hdial_rcsid[] = "$Id: hdial.c,v 1.4 1995/08/19 21:27:13 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hdnams.c b/gnu/libexec/uucp/libuuconf/hdnams.c index be71feb947f3..b9d747d9a492 100644 --- a/gnu/libexec/uucp/libuuconf/hdnams.c +++ b/gnu/libexec/uucp/libuuconf/hdnams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hdnams_rcsid[] = "$Id: hdnams.c,v 1.6 1995/06/21 19:22:48 ian Rel $"; +const char _uuconf_hdnams_rcsid[] = "$Id: hdnams.c,v 1.4 1995/08/19 21:27:14 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hinit.c b/gnu/libexec/uucp/libuuconf/hinit.c index 808862dc7e3e..e0138cddb0d5 100644 --- a/gnu/libexec/uucp/libuuconf/hinit.c +++ b/gnu/libexec/uucp/libuuconf/hinit.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hinit_rcsid[] = "$Id: hinit.c,v 1.8 1995/06/21 19:22:51 ian Rel $"; +const char _uuconf_hinit_rcsid[] = "$Id: hinit.c,v 1.4 1995/08/19 21:27:16 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hlocnm.c b/gnu/libexec/uucp/libuuconf/hlocnm.c index f2222a2f6333..694b48964133 100644 --- a/gnu/libexec/uucp/libuuconf/hlocnm.c +++ b/gnu/libexec/uucp/libuuconf/hlocnm.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hlocnm_rcsid[] = "$Id: hlocnm.c,v 1.7 1995/06/21 19:22:55 ian Rel $"; +const char _uuconf_hlocnm_rcsid[] = "$Id: hlocnm.c,v 1.3 1995/08/19 21:27:17 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hport.c b/gnu/libexec/uucp/libuuconf/hport.c index cf4b20613fd7..e39bd33e8528 100644 --- a/gnu/libexec/uucp/libuuconf/hport.c +++ b/gnu/libexec/uucp/libuuconf/hport.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hport_rcsid[] = "$Id: hport.c,v 1.14 1995/06/21 19:22:58 ian Rel $"; +const char _uuconf_hport_rcsid[] = "$Id: hport.c,v 1.3 1995/08/19 21:27:22 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hrmunk.c b/gnu/libexec/uucp/libuuconf/hrmunk.c index d06f67d03ef5..150f57a5ea12 100644 --- a/gnu/libexec/uucp/libuuconf/hrmunk.c +++ b/gnu/libexec/uucp/libuuconf/hrmunk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hrmunk_rcsid[] = "$Id: hrmunk.c,v 1.4 1995/06/21 19:23:00 ian Rel $"; +const char _uuconf_hrmunk_rcsid[] = "$Id: hrmunk.c,v 1.3 1995/08/19 21:27:24 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hsinfo.c b/gnu/libexec/uucp/libuuconf/hsinfo.c index 6520566ef6d4..7903122f6f5c 100644 --- a/gnu/libexec/uucp/libuuconf/hsinfo.c +++ b/gnu/libexec/uucp/libuuconf/hsinfo.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hsinfo_rcsid[] = "$Id: hsinfo.c,v 1.14 1995/06/21 19:23:03 ian Rel $"; +const char _uuconf_hsinfo_rcsid[] = "$Id: hsinfo.c,v 1.4 1995/08/19 21:27:25 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hsnams.c b/gnu/libexec/uucp/libuuconf/hsnams.c index 98b2345a28e1..0e4d9b173f9b 100644 --- a/gnu/libexec/uucp/libuuconf/hsnams.c +++ b/gnu/libexec/uucp/libuuconf/hsnams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hsnams_rcsid[] = "$Id: hsnams.c,v 1.6 1995/06/21 19:23:06 ian Rel $"; +const char _uuconf_hsnams_rcsid[] = "$Id: hsnams.c,v 1.4 1995/08/19 21:27:26 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/hsys.c b/gnu/libexec/uucp/libuuconf/hsys.c index ef2d5ed3f7d5..f8959c76f773 100644 --- a/gnu/libexec/uucp/libuuconf/hsys.c +++ b/gnu/libexec/uucp/libuuconf/hsys.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hsys_rcsid[] = "$Id: hsys.c,v 1.5 1995/06/21 19:23:08 ian Rel $"; +const char _uuconf_hsys_rcsid[] = "$Id: hsys.c,v 1.3 1995/08/19 21:27:28 ache Exp $";  #endif  /* Get system information from the HDB configuration files.  This is a diff --git a/gnu/libexec/uucp/libuuconf/hunk.c b/gnu/libexec/uucp/libuuconf/hunk.c index e43a278076ea..470e1ffe66cb 100644 --- a/gnu/libexec/uucp/libuuconf/hunk.c +++ b/gnu/libexec/uucp/libuuconf/hunk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_hunk_rcsid[] = "$Id: hunk.c,v 1.6 1995/06/21 19:23:11 ian Rel $"; +const char _uuconf_hunk_rcsid[] = "$Id: hunk.c,v 1.3 1995/08/19 21:27:29 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/iniglb.c b/gnu/libexec/uucp/libuuconf/iniglb.c index 8968426fb56c..f406e906094a 100644 --- a/gnu/libexec/uucp/libuuconf/iniglb.c +++ b/gnu/libexec/uucp/libuuconf/iniglb.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_iniglb_rcsid[] = "$Id: iniglb.c,v 1.11 1995/06/28 14:38:23 ian Rel $"; +const char _uuconf_iniglb_rcsid[] = "$Id: iniglb.c,v 1.3 1995/08/19 21:27:30 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/init.c b/gnu/libexec/uucp/libuuconf/init.c index e8bda308406c..f9b6432faaa2 100644 --- a/gnu/libexec/uucp/libuuconf/init.c +++ b/gnu/libexec/uucp/libuuconf/init.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_init_rcsid[] = "$Id: init.c,v 1.7 1995/06/21 19:23:16 ian Rel $"; +const char _uuconf_init_rcsid[] = "$Id: init.c,v 1.3 1995/08/19 21:27:32 ache Exp $";  #endif  /* Initialize the UUCP configuration file reading routines.  This is diff --git a/gnu/libexec/uucp/libuuconf/int.c b/gnu/libexec/uucp/libuuconf/int.c index 1fc8d59d58b8..cfa1a9a53430 100644 --- a/gnu/libexec/uucp/libuuconf/int.c +++ b/gnu/libexec/uucp/libuuconf/int.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_int_rcsid[] = "$Id: int.c,v 1.6 1995/06/21 19:23:19 ian Rel $"; +const char _uuconf_int_rcsid[] = "$Id: int.c,v 1.3 1995/08/19 21:27:33 ache Exp $";  #endif  /* Parse a string into a variable.  This is called by uuconf_cmd_args, diff --git a/gnu/libexec/uucp/libuuconf/lckdir.c b/gnu/libexec/uucp/libuuconf/lckdir.c index 28b4e945f320..b87420ca3781 100644 --- a/gnu/libexec/uucp/libuuconf/lckdir.c +++ b/gnu/libexec/uucp/libuuconf/lckdir.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_lckdir_rcsid[] = "$Id: lckdir.c,v 1.5 1995/06/21 19:23:22 ian Rel $"; +const char _uuconf_lckdir_rcsid[] = "$Id: lckdir.c,v 1.3 1995/08/19 21:27:34 ache Exp $";  #endif  /* Get the name of the UUCP lock directory.  */ diff --git a/gnu/libexec/uucp/libuuconf/lineno.c b/gnu/libexec/uucp/libuuconf/lineno.c index a5f32f1bbab5..af10039e1394 100644 --- a/gnu/libexec/uucp/libuuconf/lineno.c +++ b/gnu/libexec/uucp/libuuconf/lineno.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_lineno_rcsid[] = "$Id: lineno.c,v 1.5 1995/06/21 19:23:24 ian Rel $"; +const char _uuconf_lineno_rcsid[] = "$Id: lineno.c,v 1.3 1995/08/19 21:27:35 ache Exp $";  #endif  /* Return the saved line number.  */ diff --git a/gnu/libexec/uucp/libuuconf/llocnm.c b/gnu/libexec/uucp/libuuconf/llocnm.c index 540fc5ba38cd..5cb8600b664a 100644 --- a/gnu/libexec/uucp/libuuconf/llocnm.c +++ b/gnu/libexec/uucp/libuuconf/llocnm.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_llocnm_rcsid[] = "$Id: llocnm.c,v 1.8 1995/06/21 19:23:27 ian Rel $"; +const char _uuconf_llocnm_rcsid[] = "$Id: llocnm.c,v 1.3 1995/08/19 21:27:36 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/local.c b/gnu/libexec/uucp/libuuconf/local.c index 3dfef4cba87e..f124802e899b 100644 --- a/gnu/libexec/uucp/libuuconf/local.c +++ b/gnu/libexec/uucp/libuuconf/local.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_local_rcsid[] = "$Id: local.c,v 1.6 1995/06/21 19:23:29 ian Rel $"; +const char _uuconf_local_rcsid[] = "$Id: local.c,v 1.3 1995/08/19 21:27:37 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/locnm.c b/gnu/libexec/uucp/libuuconf/locnm.c index 87616f6d9568..730f368a82bc 100644 --- a/gnu/libexec/uucp/libuuconf/locnm.c +++ b/gnu/libexec/uucp/libuuconf/locnm.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_locnm_rcsid[] = "$Id: locnm.c,v 1.6 1995/06/21 19:23:31 ian Rel $"; +const char _uuconf_locnm_rcsid[] = "$Id: locnm.c,v 1.3 1995/08/19 21:27:39 ache Exp $";  #endif  /* Get the local node name.  */ diff --git a/gnu/libexec/uucp/libuuconf/logfil.c b/gnu/libexec/uucp/libuuconf/logfil.c index e2571fff7aa5..8b146259e0c9 100644 --- a/gnu/libexec/uucp/libuuconf/logfil.c +++ b/gnu/libexec/uucp/libuuconf/logfil.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_logfil_rcsid[] = "$Id: logfil.c,v 1.5 1995/06/21 19:23:34 ian Rel $"; +const char _uuconf_logfil_rcsid[] = "$Id: logfil.c,v 1.3 1995/08/19 21:27:41 ache Exp $";  #endif  /* Get the name of the UUCP log file.  */ diff --git a/gnu/libexec/uucp/libuuconf/maxuxq.c b/gnu/libexec/uucp/libuuconf/maxuxq.c index 6aebca699796..a45a0e494f36 100644 --- a/gnu/libexec/uucp/libuuconf/maxuxq.c +++ b/gnu/libexec/uucp/libuuconf/maxuxq.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_maxuxq_rcsid[] = "$Id: maxuxq.c,v 1.6 1995/06/21 19:23:36 ian Rel $"; +const char _uuconf_maxuxq_rcsid[] = "$Id: maxuxq.c,v 1.3 1995/08/19 21:27:42 ache Exp $";  #endif  /* Get the maximum number of simultaneous uuxqt executions.  When diff --git a/gnu/libexec/uucp/libuuconf/mrgblk.c b/gnu/libexec/uucp/libuuconf/mrgblk.c index 6e9292e73abf..21d13eafa81c 100644 --- a/gnu/libexec/uucp/libuuconf/mrgblk.c +++ b/gnu/libexec/uucp/libuuconf/mrgblk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_mrgblk_rcsid[] = "$Id: mrgblk.c,v 1.5 1995/06/21 19:23:38 ian Rel $"; +const char _uuconf_mrgblk_rcsid[] = "$Id: mrgblk.c,v 1.3 1995/08/19 21:27:44 ache Exp $";  #endif  #include "alloc.h" diff --git a/gnu/libexec/uucp/libuuconf/paramc.c b/gnu/libexec/uucp/libuuconf/paramc.c index a04bbdb6ca11..feaf4d19b131 100644 --- a/gnu/libexec/uucp/libuuconf/paramc.c +++ b/gnu/libexec/uucp/libuuconf/paramc.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_paramc_rcsid[] = "$Id: paramc.c,v 1.5 1995/06/21 19:23:41 ian Rel $"; +const char _uuconf_paramc_rcsid[] = "$Id: paramc.c,v 1.3 1995/08/19 21:27:45 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/port.c b/gnu/libexec/uucp/libuuconf/port.c index 8b0614e3aa12..bd15a7f8ad25 100644 --- a/gnu/libexec/uucp/libuuconf/port.c +++ b/gnu/libexec/uucp/libuuconf/port.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_port_rcsid[] = "$Id: port.c,v 1.6 1995/06/21 19:23:43 ian Rel $"; +const char _uuconf_port_rcsid[] = "$Id: port.c,v 1.3 1995/08/19 21:27:47 ache Exp $";  #endif  /* Find a port by name, baud rate, and special purpose function.  */ diff --git a/gnu/libexec/uucp/libuuconf/prtsub.c b/gnu/libexec/uucp/libuuconf/prtsub.c index af0d56f1eaf1..47d24bb1f489 100644 --- a/gnu/libexec/uucp/libuuconf/prtsub.c +++ b/gnu/libexec/uucp/libuuconf/prtsub.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_prtsub_rcsid[] = "$Id: prtsub.c,v 1.7 1995/06/21 19:23:46 ian Rel $"; +const char _uuconf_prtsub_rcsid[] = "$Id: prtsub.c,v 1.3 1995/08/19 21:27:49 ache Exp $";  #endif  /* Clear the information in a port.  This can only clear the type diff --git a/gnu/libexec/uucp/libuuconf/pubdir.c b/gnu/libexec/uucp/libuuconf/pubdir.c index 7507371e8ca0..fbfed1b169d6 100644 --- a/gnu/libexec/uucp/libuuconf/pubdir.c +++ b/gnu/libexec/uucp/libuuconf/pubdir.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_pubdir_rcsid[] = "$Id: pubdir.c,v 1.7 1995/06/21 19:23:49 ian Rel $"; +const char _uuconf_pubdir_rcsid[] = "$Id: pubdir.c,v 1.3 1995/08/19 21:27:50 ache Exp $";  #endif  /* Get the name of the UUCP public directory.  */ diff --git a/gnu/libexec/uucp/libuuconf/rdlocs.c b/gnu/libexec/uucp/libuuconf/rdlocs.c index 3f5da73b58a6..e2f465a4f331 100644 --- a/gnu/libexec/uucp/libuuconf/rdlocs.c +++ b/gnu/libexec/uucp/libuuconf/rdlocs.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_rdlocs_rcsid[] = "$Id: rdlocs.c,v 1.7 1995/06/21 19:23:52 ian Rel $"; +const char _uuconf_rdlocs_rcsid[] = "$Id: rdlocs.c,v 1.4 1995/08/19 21:27:51 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/rdperm.c b/gnu/libexec/uucp/libuuconf/rdperm.c index f1ecfd32bb6a..d3cf81de9c2a 100644 --- a/gnu/libexec/uucp/libuuconf/rdperm.c +++ b/gnu/libexec/uucp/libuuconf/rdperm.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_rdperm_rcsid[] = "$Id: rdperm.c,v 1.9 1995/06/21 19:23:54 ian Rel $"; +const char _uuconf_rdperm_rcsid[] = "$Id: rdperm.c,v 1.3 1995/08/19 21:27:55 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/reliab.c b/gnu/libexec/uucp/libuuconf/reliab.c index f978117696be..36567eb9b4bd 100644 --- a/gnu/libexec/uucp/libuuconf/reliab.c +++ b/gnu/libexec/uucp/libuuconf/reliab.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_reliab_rcsid[] = "$Id: reliab.c,v 1.6 1995/06/21 19:23:57 ian Rel $"; +const char _uuconf_reliab_rcsid[] = "$Id: reliab.c,v 1.3 1995/08/19 21:27:56 ache Exp $";  #endif  /* Handle the "seven-bit" command for a port or a dialer.  The pvar diff --git a/gnu/libexec/uucp/libuuconf/remunk.c b/gnu/libexec/uucp/libuuconf/remunk.c index 913b8ee62dfb..546aefdc6c4e 100644 --- a/gnu/libexec/uucp/libuuconf/remunk.c +++ b/gnu/libexec/uucp/libuuconf/remunk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_remunk_rcsid[] = "$Id: remunk.c,v 1.5 1995/06/21 19:23:59 ian Rel $"; +const char _uuconf_remunk_rcsid[] = "$Id: remunk.c,v 1.3 1995/08/19 21:27:58 ache Exp $";  #endif  /* Get the name of the remote.unknown shell script.  */ diff --git a/gnu/libexec/uucp/libuuconf/runuxq.c b/gnu/libexec/uucp/libuuconf/runuxq.c index f1b7865fec6d..9dbf92b66000 100644 --- a/gnu/libexec/uucp/libuuconf/runuxq.c +++ b/gnu/libexec/uucp/libuuconf/runuxq.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_runuxq_rcsid[] = "$Id: runuxq.c,v 1.5 1995/06/21 19:24:02 ian Rel $"; +const char _uuconf_runuxq_rcsid[] = "$Id: runuxq.c,v 1.2 1995/08/19 21:27:59 ache Exp $";  #endif  /* Return how often to spawn a uuxqt process.  This is either a diff --git a/gnu/libexec/uucp/libuuconf/sinfo.c b/gnu/libexec/uucp/libuuconf/sinfo.c index 121f1deaa120..e904fff5b37a 100644 --- a/gnu/libexec/uucp/libuuconf/sinfo.c +++ b/gnu/libexec/uucp/libuuconf/sinfo.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_sinfo_rcsid[] = "$Id: sinfo.c,v 1.5 1995/06/21 19:24:04 ian Rel $"; +const char _uuconf_sinfo_rcsid[] = "$Id: sinfo.c,v 1.3 1995/08/19 21:28:00 ache Exp $";  #endif  /* Get information about a particular system.  We combine the diff --git a/gnu/libexec/uucp/libuuconf/snams.c b/gnu/libexec/uucp/libuuconf/snams.c index 5788db31b087..407f522c7473 100644 --- a/gnu/libexec/uucp/libuuconf/snams.c +++ b/gnu/libexec/uucp/libuuconf/snams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_snams_rcsid[] = "$Id: snams.c,v 1.5 1995/06/21 19:24:07 ian Rel $"; +const char _uuconf_snams_rcsid[] = "$Id: snams.c,v 1.3 1995/08/19 21:28:02 ache Exp $";  #endif  /* Get all known system names.  */ diff --git a/gnu/libexec/uucp/libuuconf/split.c b/gnu/libexec/uucp/libuuconf/split.c index d3d5546d91c2..12c71fd1bd6a 100644 --- a/gnu/libexec/uucp/libuuconf/split.c +++ b/gnu/libexec/uucp/libuuconf/split.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_split_rcsid[] = "$Id: split.c,v 1.5 1995/06/21 19:24:09 ian Rel $"; +const char _uuconf_split_rcsid[] = "$Id: split.c,v 1.3 1995/08/19 21:28:04 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/libuuconf/spool.c b/gnu/libexec/uucp/libuuconf/spool.c index 8fe4f5a62f79..f871f2be3b51 100644 --- a/gnu/libexec/uucp/libuuconf/spool.c +++ b/gnu/libexec/uucp/libuuconf/spool.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_spool_rcsid[] = "$Id: spool.c,v 1.6 1995/06/21 19:24:11 ian Rel $"; +const char _uuconf_spool_rcsid[] = "$Id: spool.c,v 1.3 1995/08/19 21:28:05 ache Exp $";  #endif  /* Get the name of the UUCP spool directory.  */ diff --git a/gnu/libexec/uucp/libuuconf/stafil.c b/gnu/libexec/uucp/libuuconf/stafil.c index 7c6377c70261..d733b3c4c02d 100644 --- a/gnu/libexec/uucp/libuuconf/stafil.c +++ b/gnu/libexec/uucp/libuuconf/stafil.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_stafil_rcsid[] = "$Id: stafil.c,v 1.5 1995/06/21 19:24:14 ian Rel $"; +const char _uuconf_stafil_rcsid[] = "$Id: stafil.c,v 1.3 1995/08/19 21:28:06 ache Exp $";  #endif  /* Get the name of the UUCP statistics file.  */ diff --git a/gnu/libexec/uucp/libuuconf/strip.c b/gnu/libexec/uucp/libuuconf/strip.c index fc314a77e939..973fad1efd0a 100644 --- a/gnu/libexec/uucp/libuuconf/strip.c +++ b/gnu/libexec/uucp/libuuconf/strip.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_strip_rcsid[] = "$Id: strip.c,v 1.2 1995/06/28 15:43:14 ian Rel $"; +const char _uuconf_strip_rcsid[] = "$Id: strip.c,v 1.1 1995/08/19 21:28:07 ache Exp $";  #endif  /* Get information about what types of global information should be diff --git a/gnu/libexec/uucp/libuuconf/syssub.c b/gnu/libexec/uucp/libuuconf/syssub.c index 7a98f5dd9cd6..11dd7f2f0ff9 100644 --- a/gnu/libexec/uucp/libuuconf/syssub.c +++ b/gnu/libexec/uucp/libuuconf/syssub.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_syssub_rcsid[] = "$Id: syssub.c,v 1.14 1995/06/21 19:24:20 ian Rel $"; +const char _uuconf_syssub_rcsid[] = "$Id: syssub.c,v 1.4 1995/08/19 21:28:10 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tcalou.c b/gnu/libexec/uucp/libuuconf/tcalou.c index a41d7ad7335b..b675b8ee9c2e 100644 --- a/gnu/libexec/uucp/libuuconf/tcalou.c +++ b/gnu/libexec/uucp/libuuconf/tcalou.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tcalou_rcsid[] = "$Id: tcalou.c,v 1.8 1995/06/21 19:24:24 ian Rel $"; +const char _uuconf_tcalou_rcsid[] = "$Id: tcalou.c,v 1.3 1995/08/19 21:28:12 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tdial.c b/gnu/libexec/uucp/libuuconf/tdial.c index fc2c588f0b63..d3a8a751444d 100644 --- a/gnu/libexec/uucp/libuuconf/tdial.c +++ b/gnu/libexec/uucp/libuuconf/tdial.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tdial_rcsid[] = "$Id: tdial.c,v 1.6 1995/06/21 19:24:26 ian Rel $"; +const char _uuconf_tdial_rcsid[] = "$Id: tdial.c,v 1.3 1995/08/19 21:28:13 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tdialc.c b/gnu/libexec/uucp/libuuconf/tdialc.c index 75cc11cc6aaa..3e642b23eda1 100644 --- a/gnu/libexec/uucp/libuuconf/tdialc.c +++ b/gnu/libexec/uucp/libuuconf/tdialc.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tdialc_rcsid[] = "$Id: tdialc.c,v 1.6 1995/06/21 19:24:29 ian Rel $"; +const char _uuconf_tdialc_rcsid[] = "$Id: tdialc.c,v 1.4 1995/08/19 21:28:15 ache Exp $";  #endif  static int idchat P((pointer pglobal, int argc, char **argv, pointer pvar, diff --git a/gnu/libexec/uucp/libuuconf/tdnams.c b/gnu/libexec/uucp/libuuconf/tdnams.c index c1f42c6dc866..afd0814fa711 100644 --- a/gnu/libexec/uucp/libuuconf/tdnams.c +++ b/gnu/libexec/uucp/libuuconf/tdnams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tdnams_rcsid[] = "$Id: tdnams.c,v 1.6 1995/06/21 19:24:31 ian Rel $"; +const char _uuconf_tdnams_rcsid[] = "$Id: tdnams.c,v 1.4 1995/08/19 21:28:16 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tgcmp.c b/gnu/libexec/uucp/libuuconf/tgcmp.c index 2960bdaadd47..081c6ab36b54 100644 --- a/gnu/libexec/uucp/libuuconf/tgcmp.c +++ b/gnu/libexec/uucp/libuuconf/tgcmp.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tgcmp_rcsid[] = "$Id: tgcmp.c,v 1.5 1995/06/21 19:24:34 ian Rel $"; +const char _uuconf_tgcmp_rcsid[] = "$Id: tgcmp.c,v 1.3 1995/08/19 21:28:17 ache Exp $";  #endif  /* A comparison function to pass to _uuconf_itime_parse.  This diff --git a/gnu/libexec/uucp/libuuconf/thread.c b/gnu/libexec/uucp/libuuconf/thread.c index a3ee7ae8cc61..91aae72f754a 100644 --- a/gnu/libexec/uucp/libuuconf/thread.c +++ b/gnu/libexec/uucp/libuuconf/thread.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_thread_rcsid[] = "$Id: thread.c,v 1.5 1995/06/21 19:24:37 ian Rel $"; +const char _uuconf_thread_rcsid[] = "$Id: thread.c,v 1.3 1995/08/19 21:28:18 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/time.c b/gnu/libexec/uucp/libuuconf/time.c index 226116449d3b..928b4482bacb 100644 --- a/gnu/libexec/uucp/libuuconf/time.c +++ b/gnu/libexec/uucp/libuuconf/time.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_time_rcsid[] = "$Id: time.c,v 1.13 1995/06/21 19:24:39 ian Rel $"; +const char _uuconf_time_rcsid[] = "$Id: time.c,v 1.3 1995/08/19 21:28:19 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/libuuconf/tinit.c b/gnu/libexec/uucp/libuuconf/tinit.c index 3404dbce6035..808850efeae0 100644 --- a/gnu/libexec/uucp/libuuconf/tinit.c +++ b/gnu/libexec/uucp/libuuconf/tinit.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tinit_rcsid[] = "$Id: tinit.c,v 1.13 1995/06/28 14:38:51 ian Rel $"; +const char _uuconf_tinit_rcsid[] = "$Id: tinit.c,v 1.3 1995/08/19 21:28:21 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tlocnm.c b/gnu/libexec/uucp/libuuconf/tlocnm.c index 5c15e9292d06..60b1c91f0819 100644 --- a/gnu/libexec/uucp/libuuconf/tlocnm.c +++ b/gnu/libexec/uucp/libuuconf/tlocnm.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tlocnm_rcsid[] = "$Id: tlocnm.c,v 1.6 1995/06/21 19:24:45 ian Rel $"; +const char _uuconf_tlocnm_rcsid[] = "$Id: tlocnm.c,v 1.3 1995/08/19 21:28:23 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tport.c b/gnu/libexec/uucp/libuuconf/tport.c index 507b03636424..7cb22b200a38 100644 --- a/gnu/libexec/uucp/libuuconf/tport.c +++ b/gnu/libexec/uucp/libuuconf/tport.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tport_rcsid[] = "$Id: tport.c,v 1.9 1995/06/21 19:24:48 ian Rel $"; +const char _uuconf_tport_rcsid[] = "$Id: tport.c,v 1.3 1995/08/19 21:28:24 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tportc.c b/gnu/libexec/uucp/libuuconf/tportc.c index 742440845548..7fc284dc3bb4 100644 --- a/gnu/libexec/uucp/libuuconf/tportc.c +++ b/gnu/libexec/uucp/libuuconf/tportc.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tportc_rcsid[] = "$Id: tportc.c,v 1.14 1995/06/21 19:24:52 ian Rel $"; +const char _uuconf_tportc_rcsid[] = "$Id: tportc.c,v 1.4 1995/08/19 21:28:27 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tsinfo.c b/gnu/libexec/uucp/libuuconf/tsinfo.c index 670cf34c7723..32f7fc0d24f0 100644 --- a/gnu/libexec/uucp/libuuconf/tsinfo.c +++ b/gnu/libexec/uucp/libuuconf/tsinfo.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tsinfo_rcsid[] = "$Id: tsinfo.c,v 1.17 1995/08/11 03:34:37 ian Rel $"; +const char _uuconf_tsinfo_rcsid[] = "$Id: tsinfo.c,v 1.3 1995/08/19 21:28:29 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/tsnams.c b/gnu/libexec/uucp/libuuconf/tsnams.c index a350b1520f94..e5cacf1a19ea 100644 --- a/gnu/libexec/uucp/libuuconf/tsnams.c +++ b/gnu/libexec/uucp/libuuconf/tsnams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tsnams_rcsid[] = "$Id: tsnams.c,v 1.5 1995/06/21 19:24:59 ian Rel $"; +const char _uuconf_tsnams_rcsid[] = "$Id: tsnams.c,v 1.3 1995/08/19 21:28:30 ache Exp $";  #endif  /* Get all the system names from the Taylor UUCP configuration files. diff --git a/gnu/libexec/uucp/libuuconf/tsys.c b/gnu/libexec/uucp/libuuconf/tsys.c index bf5b34330fd3..daec0e6b51b6 100644 --- a/gnu/libexec/uucp/libuuconf/tsys.c +++ b/gnu/libexec/uucp/libuuconf/tsys.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tsys_rcsid[] = "$Id: tsys.c,v 1.5 1995/06/21 19:25:01 ian Rel $"; +const char _uuconf_tsys_rcsid[] = "$Id: tsys.c,v 1.3 1995/08/19 21:28:31 ache Exp $";  #endif  /* Get system information from the Taylor UUCP configuration files. diff --git a/gnu/libexec/uucp/libuuconf/tval.c b/gnu/libexec/uucp/libuuconf/tval.c index 53f0c85849e8..b8beab3f38f0 100644 --- a/gnu/libexec/uucp/libuuconf/tval.c +++ b/gnu/libexec/uucp/libuuconf/tval.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_tval_rcsid[] = "$Id: tval.c,v 1.5 1995/06/21 19:25:03 ian Rel $"; +const char _uuconf_tval_rcsid[] = "$Id: tval.c,v 1.3 1995/08/19 21:28:33 ache Exp $";  #endif  /* Validate a login name for a system using Taylor UUCP configuration diff --git a/gnu/libexec/uucp/libuuconf/ugtlin.c b/gnu/libexec/uucp/libuuconf/ugtlin.c index 27d8ab6f945b..95dbbe5bab2f 100644 --- a/gnu/libexec/uucp/libuuconf/ugtlin.c +++ b/gnu/libexec/uucp/libuuconf/ugtlin.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_ugtlin_rcsid[] = "$Id: ugtlin.c,v 1.6 1995/06/21 19:25:06 ian Rel $"; +const char _uuconf_ugtlin_rcsid[] = "$Id: ugtlin.c,v 1.3 1995/08/19 21:28:34 ache Exp $";  #endif  /* Read a line from a file with backslash continuations.  This updates diff --git a/gnu/libexec/uucp/libuuconf/unk.c b/gnu/libexec/uucp/libuuconf/unk.c index ad6c0c8f228f..7fd386760bc2 100644 --- a/gnu/libexec/uucp/libuuconf/unk.c +++ b/gnu/libexec/uucp/libuuconf/unk.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_unk_rcsid[] = "$Id: unk.c,v 1.5 1995/06/21 19:25:08 ian Rel $"; +const char _uuconf_unk_rcsid[] = "$Id: unk.c,v 1.3 1995/08/19 21:28:35 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/val.c b/gnu/libexec/uucp/libuuconf/val.c index f406ec2f43b0..b6c4eaca833c 100644 --- a/gnu/libexec/uucp/libuuconf/val.c +++ b/gnu/libexec/uucp/libuuconf/val.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_val_rcsid[] = "$Id: val.c,v 1.5 1995/06/21 19:25:13 ian Rel $"; +const char _uuconf_val_rcsid[] = "$Id: val.c,v 1.3 1995/08/19 21:28:38 ache Exp $";  #endif  /* Validate a login name for a system.  */ diff --git a/gnu/libexec/uucp/libuuconf/vinit.c b/gnu/libexec/uucp/libuuconf/vinit.c index d9c5f97cbb79..2097145f83d5 100644 --- a/gnu/libexec/uucp/libuuconf/vinit.c +++ b/gnu/libexec/uucp/libuuconf/vinit.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_vinit_rcsid[] = "$Id: vinit.c,v 1.5 1995/06/21 19:25:16 ian Rel $"; +const char _uuconf_vinit_rcsid[] = "$Id: vinit.c,v 1.3 1995/08/19 21:28:39 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/vport.c b/gnu/libexec/uucp/libuuconf/vport.c index 7846cb9274ef..ce4623dd67d7 100644 --- a/gnu/libexec/uucp/libuuconf/vport.c +++ b/gnu/libexec/uucp/libuuconf/vport.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_vport_rcsid[] = "$Id: vport.c,v 1.9 1995/06/21 19:25:19 ian Rel $"; +const char _uuconf_vport_rcsid[] = "$Id: vport.c,v 1.4 1995/08/19 21:28:40 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/vsinfo.c b/gnu/libexec/uucp/libuuconf/vsinfo.c index 6a6875c890e6..04e06be263d3 100644 --- a/gnu/libexec/uucp/libuuconf/vsinfo.c +++ b/gnu/libexec/uucp/libuuconf/vsinfo.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_vsinfo_rcsid[] = "$Id: vsinfo.c,v 1.14 1995/06/21 19:25:24 ian Rel $"; +const char _uuconf_vsinfo_rcsid[] = "$Id: vsinfo.c,v 1.4 1995/08/19 21:28:43 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/vsnams.c b/gnu/libexec/uucp/libuuconf/vsnams.c index 2d2e4a504e9f..f90ec249e0fa 100644 --- a/gnu/libexec/uucp/libuuconf/vsnams.c +++ b/gnu/libexec/uucp/libuuconf/vsnams.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_vsnams_rcsid[] = "$Id: vsnams.c,v 1.8 1995/06/21 19:25:26 ian Rel $"; +const char _uuconf_vsnams_rcsid[] = "$Id: vsnams.c,v 1.3 1995/08/19 21:28:46 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/libuuconf/vsys.c b/gnu/libexec/uucp/libuuconf/vsys.c index 82ac24659268..29eed8c35e42 100644 --- a/gnu/libexec/uucp/libuuconf/vsys.c +++ b/gnu/libexec/uucp/libuuconf/vsys.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char _uuconf_vsys_rcsid[] = "$Id: vsys.c,v 1.5 1995/06/21 19:25:29 ian Rel $"; +const char _uuconf_vsys_rcsid[] = "$Id: vsys.c,v 1.3 1995/08/19 21:28:49 ache Exp $";  #endif  /* Get system information from the V2 configuration files.  This is a diff --git a/gnu/libexec/uucp/libuucp/Makefile b/gnu/libexec/uucp/libuucp/Makefile index 33e0a0251850..e709431abc6a 100644 --- a/gnu/libexec/uucp/libuucp/Makefile +++ b/gnu/libexec/uucp/libuucp/Makefile @@ -1,5 +1,5 @@  # This is the Makefile for the libuucp subdirectory of Taylor UUCP -# $Id: Makefile,v 1.2 1993/08/16 16:22:34 jtc Exp $ +# $Id: Makefile,v 1.3 1994/05/07 18:13:29 ache Exp $  LIB=		uucp  SRCS = buffer.c crc.c debug.c escape.c getopt.c getop1.c parse.c spool.c \ diff --git a/gnu/libexec/uucp/libuucp/parse.c b/gnu/libexec/uucp/libuucp/parse.c index da724fc6a298..ab047d08dfb9 100644 --- a/gnu/libexec/uucp/libuucp/parse.c +++ b/gnu/libexec/uucp/libuucp/parse.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char parse_rcsid[] = "$Id: parse.c,v 1.8 1995/06/21 19:18:35 ian Rel $"; +const char parse_rcsid[] = "$Id: parse.c,v 1.4 1995/08/19 21:29:22 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/sample/Makefile b/gnu/libexec/uucp/sample/Makefile index ad78f12e6b17..585a0fa66c50 100644 --- a/gnu/libexec/uucp/sample/Makefile +++ b/gnu/libexec/uucp/sample/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1994/04/25 16:17:59 jkh Exp $ +# $Id: Makefile,v 1.3 1995/07/25 00:31:29 bde Exp $  FILES=	call.sample config.sample dial.sample dialcode.sample passwd.sample \  	port.sample sys1.sample sys2.sample diff --git a/gnu/libexec/uucp/tstuu.c b/gnu/libexec/uucp/tstuu.c index a4ba8621b19b..ee04353ffc82 100644 --- a/gnu/libexec/uucp/tstuu.c +++ b/gnu/libexec/uucp/tstuu.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char tstuu_rcsid[] = "$Id: tstuu.c,v 1.86 1995/06/29 19:34:59 ian Rel $"; +const char tstuu_rcsid[] = "$Id: tstuu.c,v 1.4 1995/08/19 21:23:11 ache Exp $";  #endif  #include "sysdep.h" diff --git a/gnu/libexec/uucp/uuchk/Makefile b/gnu/libexec/uucp/uuchk/Makefile index 333ae4d113b3..380fd8a584b8 100644 --- a/gnu/libexec/uucp/uuchk/Makefile +++ b/gnu/libexec/uucp/uuchk/Makefile @@ -1,5 +1,5 @@  # Makefile for uuchk -# $Id: Makefile,v 1.4 1995/05/14 17:00:58 ache Exp $ +# $Id: Makefile,v 1.4.6.1 1998/03/03 06:09:27 jkh Exp $  BINDIR=		$(sbindir) diff --git a/gnu/libexec/uucp/uuchk/uuchk.8 b/gnu/libexec/uucp/uuchk/uuchk.8 index c6ff00aa194a..4692e7e0c229 100644 --- a/gnu/libexec/uucp/uuchk/uuchk.8 +++ b/gnu/libexec/uucp/uuchk/uuchk.8 @@ -1,4 +1,4 @@ -''' $Id: uuchk.8,v 1.1 1997/09/14 13:04:05 wosch Exp $ +''' $Id: uuchk.8,v 1.1.2.1 1998/03/09 11:13:33 jkh Exp $  .TH uuchk 1 "Taylor UUCP 1.06"  .SH NAME  uuchk \- displays information from the UUCP configuration diff --git a/gnu/libexec/uucp/uuchk/uuchk.c b/gnu/libexec/uucp/uuchk/uuchk.c index 190fd4bf336b..4e9540a22584 100644 --- a/gnu/libexec/uucp/uuchk/uuchk.c +++ b/gnu/libexec/uucp/uuchk/uuchk.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uuchk_rcsid[] = "$Id: uuchk.c,v 1.65 1995/07/18 00:59:30 ian Rel $"; +const char uuchk_rcsid[] = "$Id: uuchk.c,v 1.4 1995/08/19 21:29:30 ache Exp $";  #endif  #include "getopt.h" diff --git a/gnu/libexec/uucp/uucico/Makefile b/gnu/libexec/uucp/uucico/Makefile index 7bc891635e95..dffe30908ce9 100644 --- a/gnu/libexec/uucp/uucico/Makefile +++ b/gnu/libexec/uucp/uucico/Makefile @@ -1,5 +1,5 @@  # Makefile for uucico -# $Id: Makefile,v 1.8 1995/08/19 21:29:34 ache Exp $ +# $Id: Makefile,v 1.9 1995/09/14 22:18:39 ache Exp $  BINDIR=         $(libxdir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/uucico/prote.c b/gnu/libexec/uucp/uucico/prote.c index fc73b5db141b..c6f0c97483c2 100644 --- a/gnu/libexec/uucp/uucico/prote.c +++ b/gnu/libexec/uucp/uucico/prote.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char prote_rcsid[] = "$Id: prote.c,v 1.20 1995/08/02 00:24:28 ian Rel $"; +const char prote_rcsid[] = "$Id: prote.c,v 1.4 1995/08/19 21:29:36 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/uucico/protf.c b/gnu/libexec/uucp/uucico/protf.c index 289dbeff02bc..7c70ede274c2 100644 --- a/gnu/libexec/uucp/uucico/protf.c +++ b/gnu/libexec/uucp/uucico/protf.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char protf_rcsid[] = "$Id: protf.c,v 1.33 1995/06/21 19:15:17 ian Rel $"; +const char protf_rcsid[] = "$Id: protf.c,v 1.4 1995/08/19 21:29:38 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uucico/protg.c b/gnu/libexec/uucp/uucico/protg.c index eda4ed0df38a..d106c5d7ac8f 100644 --- a/gnu/libexec/uucp/uucico/protg.c +++ b/gnu/libexec/uucp/uucico/protg.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char protg_rcsid[] = "$Id: protg.c,v 1.68 1995/06/21 19:15:22 ian Rel $"; +const char protg_rcsid[] = "$Id: protg.c,v 1.4 1995/08/19 21:29:40 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uucico/proti.c b/gnu/libexec/uucp/uucico/proti.c index 32098921cdb4..e8acd483dd34 100644 --- a/gnu/libexec/uucp/uucico/proti.c +++ b/gnu/libexec/uucp/uucico/proti.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char proti_rcsid[] = "$Id: proti.c,v 1.33 1995/06/21 19:15:28 ian Rel $"; +const char proti_rcsid[] = "$Id: proti.c,v 1.4 1995/08/19 21:29:42 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uucico/protj.c b/gnu/libexec/uucp/uucico/protj.c index 3d7c206ceb8f..8d8cffd092f3 100644 --- a/gnu/libexec/uucp/uucico/protj.c +++ b/gnu/libexec/uucp/uucico/protj.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char protj_rcsid[] = "$Id: protj.c,v 1.6 1995/06/21 19:15:32 ian Rel $"; +const char protj_rcsid[] = "$Id: protj.c,v 1.3 1995/08/19 21:29:44 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uucico/prott.c b/gnu/libexec/uucp/uucico/prott.c index dec455770404..0d38bed6f269 100644 --- a/gnu/libexec/uucp/uucico/prott.c +++ b/gnu/libexec/uucp/uucico/prott.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char prott_rcsid[] = "$Id: prott.c,v 1.29 1995/06/21 19:15:36 ian Rel $"; +const char prott_rcsid[] = "$Id: prott.c,v 1.4 1995/08/19 21:29:45 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/uucico/proty.c b/gnu/libexec/uucp/uucico/proty.c index f15671e2b4d3..2d5d5fb74775 100644 --- a/gnu/libexec/uucp/uucico/proty.c +++ b/gnu/libexec/uucp/uucico/proty.c @@ -23,7 +23,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char proty_id[] = "$Id: proty.c,v 1.4 1995/06/21 19:15:40 ian Rel $"; +const char proty_id[] = "$Id: proty.c,v 1.1 1995/08/19 21:29:47 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/uucico/protz.c b/gnu/libexec/uucp/uucico/protz.c index 5dd2473fd115..878bae7c2382 100644 --- a/gnu/libexec/uucp/uucico/protz.c +++ b/gnu/libexec/uucp/uucico/protz.c @@ -181,7 +181,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char protz_rcsid[] = "$Id: protz.c,v 1.8 1993/12/20 00:44:49 ian Rel $"; +const char protz_rcsid[] = "$Id: protz.c,v 1.4 1995/08/19 21:29:48 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/uucico/rec.c b/gnu/libexec/uucp/uucico/rec.c index 4a8f16351a76..69ed0dbb14e8 100644 --- a/gnu/libexec/uucp/uucico/rec.c +++ b/gnu/libexec/uucp/uucico/rec.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char rec_rcsid[] = "$Id: rec.c,v 1.43 1995/08/02 01:21:12 ian Rel $"; +const char rec_rcsid[] = "$Id: rec.c,v 1.5 1995/08/19 21:29:50 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/uucico/send.c b/gnu/libexec/uucp/uucico/send.c index 6cd745082687..abe3384dc823 100644 --- a/gnu/libexec/uucp/uucico/send.c +++ b/gnu/libexec/uucp/uucico/send.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char send_rcsid[] = "$Id: send.c,v 1.51 1995/06/21 19:15:49 ian Rel $"; +const char send_rcsid[] = "$Id: send.c,v 1.5 1995/08/19 21:29:52 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/uucico/time.c b/gnu/libexec/uucp/uucico/time.c index 74842469f50a..4b81a48696e2 100644 --- a/gnu/libexec/uucp/uucico/time.c +++ b/gnu/libexec/uucp/uucico/time.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char time_rcsid[] = "$Id: time.c,v 1.21 1995/06/21 19:16:02 ian Rel $"; +const char time_rcsid[] = "$Id: time.c,v 1.3 1995/08/19 21:29:54 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uucico/trans.c b/gnu/libexec/uucp/uucico/trans.c index b62b908446cc..e3860a4c1c93 100644 --- a/gnu/libexec/uucp/uucico/trans.c +++ b/gnu/libexec/uucp/uucico/trans.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char trans_rcsid[] = "$Id: trans.c,v 1.4 1995/08/19 21:29:55 ache Exp $"; +const char trans_rcsid[] = "$Id: trans.c,v 1.5 1995/08/21 11:28:22 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/uucico/uucico.8 b/gnu/libexec/uucp/uucico/uucico.8 index a7ca915d78d1..3b3b293e1b8b 100644 --- a/gnu/libexec/uucp/uucico/uucico.8 +++ b/gnu/libexec/uucp/uucico/uucico.8 @@ -1,4 +1,4 @@ -''' $Id: uucico.8,v 1.18 1995/06/26 22:36:09 ian Rel $ +''' $Id: uucico.8,v 1.5 1995/08/19 21:29:57 ache Exp $  .TH uucico 8 "Taylor UUCP 1.06"  .SH NAME  uucico \- UUCP file transfer daemon diff --git a/gnu/libexec/uucp/uucico/uucico.c b/gnu/libexec/uucp/uucico/uucico.c index d268e422671d..0699faf781eb 100644 --- a/gnu/libexec/uucp/uucico/uucico.c +++ b/gnu/libexec/uucp/uucico/uucico.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uucico_rcsid[] = "$Id: uucico.c,v 1.5 1995/08/19 21:29:59 ache Exp $"; +const char uucico_rcsid[] = "$Id: uucico.c,v 1.6 1995/08/21 11:28:23 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uucico/xcmd.c b/gnu/libexec/uucp/uucico/xcmd.c index a02411ad22c0..728356260e53 100644 --- a/gnu/libexec/uucp/uucico/xcmd.c +++ b/gnu/libexec/uucp/uucico/xcmd.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char xcmd_rcsid[] = "$Id: xcmd.c,v 1.19 1995/06/21 20:20:42 ian Rel $"; +const char xcmd_rcsid[] = "$Id: xcmd.c,v 1.3 1995/08/19 21:30:01 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/uuconv/Makefile b/gnu/libexec/uucp/uuconv/Makefile index a3a9dd126465..6c55ce125409 100644 --- a/gnu/libexec/uucp/uuconv/Makefile +++ b/gnu/libexec/uucp/uuconv/Makefile @@ -1,5 +1,5 @@  # Makefile for uuconv -# $Id: Makefile,v 1.5 1995/05/30 04:45:39 rgrimes Exp $ +# $Id: Makefile,v 1.5.6.1 1998/03/03 06:10:11 jkh Exp $  BINDIR=		$(sbindir) diff --git a/gnu/libexec/uucp/uuconv/uuconv.1 b/gnu/libexec/uucp/uuconv/uuconv.1 index b95c9e1d4f1f..b99907f7a535 100644 --- a/gnu/libexec/uucp/uuconv/uuconv.1 +++ b/gnu/libexec/uucp/uuconv/uuconv.1 @@ -1,4 +1,4 @@ -''' $Id: uustat.1,v 1.8 1997/02/22 15:28:49 peter Exp $ +''' $Id: uuconv.1,v 1.1 1997/09/14 13:04:14 wosch Exp $  .TH uuconv 1 "Taylor UUCP 1.06"  .SH NAME  uuconv \- convert UUCP configuration files diff --git a/gnu/libexec/uucp/uuconv/uuconv.c b/gnu/libexec/uucp/uuconv/uuconv.c index 2528140958dd..a5f2372effcd 100644 --- a/gnu/libexec/uucp/uuconv/uuconv.c +++ b/gnu/libexec/uucp/uuconv/uuconv.c @@ -26,7 +26,7 @@  #include "uucnfi.h"  #if USE_RCS_ID -const char uuconv_rcsid[] = "$Id: uuconv.c,v 1.27 1995/06/29 19:36:27 ian Rel $"; +const char uuconv_rcsid[] = "$Id: uuconv.c,v 1.4 1995/08/19 21:30:03 ache Exp $";  #endif  #include "getopt.h" diff --git a/gnu/libexec/uucp/uucp/Makefile b/gnu/libexec/uucp/uucp/Makefile index 4cb4afa8138a..b6af00ea421a 100644 --- a/gnu/libexec/uucp/uucp/Makefile +++ b/gnu/libexec/uucp/uucp/Makefile @@ -1,5 +1,5 @@  # Makefile for uucp -# $Id: Makefile,v 1.2 1994/05/31 05:37:12 ache Exp $ +# $Id: Makefile,v 1.3 1994/05/31 07:37:14 ache Exp $  BINDIR=		$(bindir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/uucp/uucp.1 b/gnu/libexec/uucp/uucp/uucp.1 index 25cc7cbb2441..a46164319b32 100644 --- a/gnu/libexec/uucp/uucp/uucp.1 +++ b/gnu/libexec/uucp/uucp/uucp.1 @@ -1,4 +1,4 @@ -''' $Id: uucp.1,v 1.11 1995/06/26 21:34:49 ian Rel $ +''' $Id: uucp.1,v 1.4 1995/08/19 21:30:08 ache Exp $  .TH uucp 1 "Taylor UUCP 1.06"  .SH NAME  uucp \- Unix to Unix copy diff --git a/gnu/libexec/uucp/uucp/uucp.c b/gnu/libexec/uucp/uucp/uucp.c index bf2aa201dd3f..115e930013e7 100644 --- a/gnu/libexec/uucp/uucp/uucp.c +++ b/gnu/libexec/uucp/uucp/uucp.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uucp_rcsid[] = "$Id: uucp.c,v 1.3 1995/08/19 21:30:10 ache Exp $"; +const char uucp_rcsid[] = "$Id: uucp.c,v 1.4 1995/08/21 11:28:24 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uulog/Makefile b/gnu/libexec/uucp/uulog/Makefile index a70aa161a48b..2a5d7e4db818 100644 --- a/gnu/libexec/uucp/uulog/Makefile +++ b/gnu/libexec/uucp/uulog/Makefile @@ -1,5 +1,5 @@  # Makefile for uulog -# $Id: Makefile,v 1.1 1993/08/05 18:27:39 conklin Exp $ +# $Id: Makefile,v 1.1.10.1 1998/03/03 06:10:44 jkh Exp $  BINDIR=		$(bindir) diff --git a/gnu/libexec/uucp/uulog/uulog.1 b/gnu/libexec/uucp/uulog/uulog.1 index 7aecaa7ddadb..db370f8ad636 100644 --- a/gnu/libexec/uucp/uulog/uulog.1 +++ b/gnu/libexec/uucp/uulog/uulog.1 @@ -1,4 +1,4 @@ -''' $Id: uulog.1,v 1.1 1997/09/14 13:04:19 wosch Exp $ +''' $Id: uulog.1,v 1.1.2.1 1998/03/16 15:11:49 hoek Exp $  .TH uulog 1 "Taylor UUCP 1.06"  .SH NAME  uulog \- display UUCP log entries  diff --git a/gnu/libexec/uucp/uulog/uulog.c b/gnu/libexec/uucp/uulog/uulog.c index 9d9cad52dfaf..427e32d3bbf5 100644 --- a/gnu/libexec/uucp/uulog/uulog.c +++ b/gnu/libexec/uucp/uulog/uulog.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uulog_rcsid[] = "$Id: uulog.c,v 1.26 1995/06/29 19:37:19 ian Rel $"; +const char uulog_rcsid[] = "$Id: uulog.c,v 1.4 1995/08/19 21:30:12 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uuname/Makefile b/gnu/libexec/uucp/uuname/Makefile index 5629728430f7..df8b30b33252 100644 --- a/gnu/libexec/uucp/uuname/Makefile +++ b/gnu/libexec/uucp/uuname/Makefile @@ -1,5 +1,5 @@  # Makefile for uuname -# $Id: Makefile,v 1.1 1993/08/05 18:27:42 conklin Exp $ +# $Id: Makefile,v 1.1.10.1 1998/03/03 06:12:56 jkh Exp $  BINDIR=		$(bindir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/uuname/uuname.1 b/gnu/libexec/uucp/uuname/uuname.1 index 3ae8e127132e..845a3e9197b3 100644 --- a/gnu/libexec/uucp/uuname/uuname.1 +++ b/gnu/libexec/uucp/uuname/uuname.1 @@ -1,4 +1,4 @@ -''' $Id: uustat.1,v 1.8 1997/02/22 15:28:49 peter Exp $ +''' $Id: uuname.1,v 1.1 1997/09/13 21:44:33 wosch Exp $  .TH uuname 1 "Taylor UUCP 1.06"  .SH NAME  uuname \- list known remote UUCP sites diff --git a/gnu/libexec/uucp/uuname/uuname.c b/gnu/libexec/uucp/uuname/uuname.c index 22fc70606a69..8389498cbb89 100644 --- a/gnu/libexec/uucp/uuname/uuname.c +++ b/gnu/libexec/uucp/uuname/uuname.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uuname_rcsid[] = "$Id: uuname.c,v 1.21 1995/06/29 19:37:53 ian Rel $"; +const char uuname_rcsid[] = "$Id: uuname.c,v 1.3 1995/08/19 21:30:14 ache Exp $";  #endif  #include "getopt.h" diff --git a/gnu/libexec/uucp/uupick/Makefile b/gnu/libexec/uucp/uupick/Makefile index df32c4b8f536..75cc253576a1 100644 --- a/gnu/libexec/uucp/uupick/Makefile +++ b/gnu/libexec/uucp/uupick/Makefile @@ -1,5 +1,5 @@  # Makefile for uupick -# $Id: Makefile,v 1.1 1993/08/05 18:27:46 conklin Exp $ +# $Id: Makefile,v 1.1.10.1 1998/03/03 06:12:56 jkh Exp $  BINDIR=		$(bindir) diff --git a/gnu/libexec/uucp/uupick/uupick.1 b/gnu/libexec/uucp/uupick/uupick.1 index 0933cbcbb98a..47b3fe81ceed 100644 --- a/gnu/libexec/uucp/uupick/uupick.1 +++ b/gnu/libexec/uucp/uupick/uupick.1 @@ -1,4 +1,4 @@ -''' $Id: uustat.1,v 1.8 1997/02/22 15:28:49 peter Exp $ +''' $Id: uupick.1,v 1.1 1997/09/13 21:44:46 wosch Exp $  .TH uupick 1 "Taylor UUCP 1.06"  .SH NAME  uupick \- retrieve files transferred by uuto diff --git a/gnu/libexec/uucp/uupick/uupick.c b/gnu/libexec/uucp/uupick/uupick.c index d88230f17e2d..1e89d932de3f 100644 --- a/gnu/libexec/uucp/uupick/uupick.c +++ b/gnu/libexec/uucp/uupick/uupick.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uupick_rcsid[] = "$Id: uupick.c,v 1.16 1995/06/29 19:38:55 ian Rel $"; +const char uupick_rcsid[] = "$Id: uupick.c,v 1.3 1995/08/19 21:30:16 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/libexec/uucp/uusched/Makefile b/gnu/libexec/uucp/uusched/Makefile index 365c8b20a6f0..3cd9f46a8d65 100644 --- a/gnu/libexec/uucp/uusched/Makefile +++ b/gnu/libexec/uucp/uusched/Makefile @@ -1,5 +1,5 @@  # Makefile for uusched -# $Id: Makefile,v 1.8 1995/07/25 00:31:36 bde Exp $ +# $Id: Makefile,v 1.8.2.1 1998/03/03 06:12:57 jkh Exp $  BINDIR=		$(bindir)  CLEANFILES+=	$(ONESHPROG) diff --git a/gnu/libexec/uucp/uusched/uusched.8 b/gnu/libexec/uucp/uusched/uusched.8 index c1c1508dd7b5..28ad5194f0fb 100644 --- a/gnu/libexec/uucp/uusched/uusched.8 +++ b/gnu/libexec/uucp/uusched/uusched.8 @@ -1,4 +1,4 @@ -''' $Id: uustat.1,v 1.8 1997/02/22 15:28:49 peter Exp $ +''' $Id: uusched.8,v 1.1 1997/09/14 13:04:26 wosch Exp $  .TH uusched 8 "Taylor UUCP 1.06"  .SH NAME  uusched \- UUCP file transfer daemon diff --git a/gnu/libexec/uucp/uustat/Makefile b/gnu/libexec/uucp/uustat/Makefile index f45e6a108403..2b403f60b681 100644 --- a/gnu/libexec/uucp/uustat/Makefile +++ b/gnu/libexec/uucp/uustat/Makefile @@ -1,5 +1,5 @@  # Makefile for uustat -# $Id: Makefile,v 1.1 1993/08/05 18:28:01 conklin Exp $ +# $Id: Makefile,v 1.2 1995/09/15 00:05:07 ache Exp $  BINDIR=		$(bindir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/uustat/uustat.1 b/gnu/libexec/uucp/uustat/uustat.1 index 3256700670d0..e4500a0006fa 100644 --- a/gnu/libexec/uucp/uustat/uustat.1 +++ b/gnu/libexec/uucp/uustat/uustat.1 @@ -1,4 +1,4 @@ -''' $Id: uustat.1,v 1.5 1995/08/19 21:30:18 ache Exp $ +''' $Id: uustat.1,v 1.6 1996/02/02 00:26:06 mpp Exp $  .TH uustat 1 "Taylor UUCP 1.06"  .SH NAME  uustat \- UUCP status inquiry and control diff --git a/gnu/libexec/uucp/uustat/uustat.c b/gnu/libexec/uucp/uustat/uustat.c index 8918caeb1805..50d1ce1e0294 100644 --- a/gnu/libexec/uucp/uustat/uustat.c +++ b/gnu/libexec/uucp/uustat/uustat.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uustat_rcsid[] = "$Id: uustat.c,v 1.55 1995/08/02 00:14:15 ian Rel $"; +const char uustat_rcsid[] = "$Id: uustat.c,v 1.4 1995/08/19 21:30:21 ache Exp $";  #endif  #include <ctype.h> diff --git a/gnu/libexec/uucp/uuto/Makefile b/gnu/libexec/uucp/uuto/Makefile index 2c2ef6ff18a8..b8b4e2e83df1 100644 --- a/gnu/libexec/uucp/uuto/Makefile +++ b/gnu/libexec/uucp/uuto/Makefile @@ -1,5 +1,5 @@  # Makefile for uuto -# $Id: Makefile,v 1.6 1995/07/25 00:31:45 bde Exp $ +# $Id: Makefile,v 1.6.2.1 1998/03/03 06:12:57 jkh Exp $  BINDIR=		$(bindir)  CLEANFILES+=	$(ONESHPROG) diff --git a/gnu/libexec/uucp/uuto/uuto.1 b/gnu/libexec/uucp/uuto/uuto.1 index b215b99888df..934e7e082823 100644 --- a/gnu/libexec/uucp/uuto/uuto.1 +++ b/gnu/libexec/uucp/uuto/uuto.1 @@ -1,4 +1,4 @@ -''' $Id: uustat.1,v 1.8 1997/02/22 15:28:49 peter Exp $ +''' $Id: uuto.1,v 1.1 1997/09/13 21:44:49 wosch Exp $  ''' based on the uucp texinfo documentation  .TH uuto 1 "Taylor UUCP 1.06"  .SH NAME diff --git a/gnu/libexec/uucp/uux/Makefile b/gnu/libexec/uucp/uux/Makefile index 4ee45a431455..1fe92f2fa2c2 100644 --- a/gnu/libexec/uucp/uux/Makefile +++ b/gnu/libexec/uucp/uux/Makefile @@ -1,5 +1,5 @@  # Makefile for uux -# $Id: Makefile,v 1.2 1994/05/31 05:46:38 ache Exp $ +# $Id: Makefile,v 1.3 1994/05/31 07:37:25 ache Exp $  BINDIR=		$(bindir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/uux/uux.1 b/gnu/libexec/uucp/uux/uux.1 index 034d4800acc9..4d740998fb53 100644 --- a/gnu/libexec/uucp/uux/uux.1 +++ b/gnu/libexec/uucp/uux/uux.1 @@ -1,4 +1,4 @@ -''' $Id: uux.1,v 1.12 1995/06/27 02:21:14 ian Rel $ +''' $Id: uux.1,v 1.4 1995/08/19 21:30:25 ache Exp $  .TH uux 1 "Taylor UUCP 1.06"  .SH NAME  uux \- Remote command execution over UUCP diff --git a/gnu/libexec/uucp/uux/uux.c b/gnu/libexec/uucp/uux/uux.c index 966ded2f6116..71a9123d637a 100644 --- a/gnu/libexec/uucp/uux/uux.c +++ b/gnu/libexec/uucp/uux/uux.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uux_rcsid[] = "$Id: uux.c,v 1.7 1995/08/19 21:30:27 ache Exp $"; +const char uux_rcsid[] = "$Id: uux.c,v 1.8 1995/08/21 11:28:26 ache Exp $";  #endif  #include "uudefs.h" diff --git a/gnu/libexec/uucp/uuxqt/Makefile b/gnu/libexec/uucp/uuxqt/Makefile index 8669d541e226..a64620bd2639 100644 --- a/gnu/libexec/uucp/uuxqt/Makefile +++ b/gnu/libexec/uucp/uuxqt/Makefile @@ -1,5 +1,5 @@  # Makefile for uuxqt -# $Id: Makefile,v 1.5 1994/05/31 05:46:42 ache Exp $ +# $Id: Makefile,v 1.6 1995/05/13 12:30:17 ache Exp $  BINDIR=         $(libxdir)  BINOWN=		$(owner) diff --git a/gnu/libexec/uucp/uuxqt/uuxqt.8 b/gnu/libexec/uucp/uuxqt/uuxqt.8 index 94aa559d7956..89cd4810cd6c 100644 --- a/gnu/libexec/uucp/uuxqt/uuxqt.8 +++ b/gnu/libexec/uucp/uuxqt/uuxqt.8 @@ -1,4 +1,4 @@ -''' $Id: uuxqt.8,v 1.8 1995/06/26 22:38:55 ian Rel $ +''' $Id: uuxqt.8,v 1.4 1995/08/19 21:30:28 ache Exp $  .TH uuxqt 8 "Taylor UUCP 1.06"  .SH NAME  uuxqt \- UUCP execution daemon diff --git a/gnu/libexec/uucp/uuxqt/uuxqt.c b/gnu/libexec/uucp/uuxqt/uuxqt.c index 99c7db425fd9..08c3f3af1903 100644 --- a/gnu/libexec/uucp/uuxqt/uuxqt.c +++ b/gnu/libexec/uucp/uuxqt/uuxqt.c @@ -26,7 +26,7 @@  #include "uucp.h"  #if USE_RCS_ID -const char uuxqt_rcsid[] = "$Id: uuxqt.c,v 1.82 1995/07/19 04:22:26 ian Rel $"; +const char uuxqt_rcsid[] = "$Id: uuxqt.c,v 1.5 1995/08/19 21:30:30 ache Exp $";  #endif  #include <errno.h> diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index d1c6e379122a..31da21a8159f 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.33 1996/10/04 08:45:34 peter Exp $ +#	$Id: Makefile,v 1.33.2.1 1998/02/15 15:18:36 jkh Exp $  SUBDIR= as awk bc bison cc cpio cvs dc dialog diff diff3 gdb genclass gperf \  	grep groff gzip ld man patch ptx rcs sdiff send-pr \ diff --git a/gnu/usr.bin/Makefile.inc b/gnu/usr.bin/Makefile.inc index 5371a22cca25..07604ed971c2 100644 --- a/gnu/usr.bin/Makefile.inc +++ b/gnu/usr.bin/Makefile.inc @@ -1,3 +1,3 @@ -#	$Id$ +#	$Id: Makefile.inc,v 1.1 1994/01/30 00:31:51 rgrimes Exp $  BINDIR?=	/usr/bin diff --git a/gnu/usr.bin/as/Makefile b/gnu/usr.bin/as/Makefile index 908501d5edba..c50a7dc393f2 100644 --- a/gnu/usr.bin/as/Makefile +++ b/gnu/usr.bin/as/Makefile @@ -1,5 +1,5 @@  #	from: @(#)Makefile	6.1 (Berkeley) 3/3/91 -#	$Id: Makefile,v 1.9 1995/09/22 14:14:12 phk Exp $ +#	$Id: Makefile,v 1.10 1996/06/24 04:22:43 jkh Exp $  .include "config/Makefile.$(MACHINE)" diff --git a/gnu/usr.bin/as/Makefile.in b/gnu/usr.bin/as/Makefile.in index ba1696b1466f..d9c8468646ba 100644 --- a/gnu/usr.bin/as/Makefile.in +++ b/gnu/usr.bin/as/Makefile.in @@ -1,4 +1,4 @@ -#	$Id: $ +#	$Id: Makefile.in,v 1.3 1996/05/07 23:14:59 wosch Exp $  # Makefile for GNU Assembler  #   Copyright (C) 1987-1992 Free Software Foundation, Inc. diff --git a/gnu/usr.bin/as/app.c b/gnu/usr.bin/as/app.c index 15e88e914050..08c07d054372 100644 --- a/gnu/usr.bin/as/app.c +++ b/gnu/usr.bin/as/app.c @@ -24,7 +24,7 @@     pair.  This needs better error-handling.  */  #ifndef lint -static char rcsid[] = "$Id: app.c,v 1.3 1994/12/23 22:35:59 nate Exp $"; +static char rcsid[] = "$Id: app.c,v 1.4 1995/05/30 04:45:59 rgrimes Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/as/as.1 b/gnu/usr.bin/as/as.1 index 093aae6fc27f..5d264759cc0f 100644 --- a/gnu/usr.bin/as/as.1 +++ b/gnu/usr.bin/as/as.1 @@ -1,6 +1,6 @@  .\" Copyright (c) 1991, 1992 Free Software Foundation  .\" See section COPYING for conditions for redistribution -.\"	$Id: as.1,v 1.5 1996/08/29 18:05:40 wosch Exp $ +.\"	$Id: as.1,v 1.6 1996/10/01 00:11:12 peter Exp $  .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools"  .SH NAME diff --git a/gnu/usr.bin/as/as.c b/gnu/usr.bin/as/as.c index 309ba38310e0..acb5d7ee7fe5 100644 --- a/gnu/usr.bin/as/as.c +++ b/gnu/usr.bin/as/as.c @@ -32,7 +32,7 @@   *   */  #ifndef lint -static char rcsid[] = "$Id: as.c,v 1.3 1995/05/30 04:46:01 rgrimes Exp $"; +static char rcsid[] = "$Id: as.c,v 1.4 1996/10/01 00:11:19 peter Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/as/as.h b/gnu/usr.bin/as/as.h index 0e9d017528e4..32825adb64f0 100644 --- a/gnu/usr.bin/as/as.h +++ b/gnu/usr.bin/as/as.h @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: as.h,v 1.4 1995/05/30 04:46:02 rgrimes Exp $ + * $Id: as.h,v 1.5 1996/10/01 00:11:25 peter Exp $   */  #define GAS 1 diff --git a/gnu/usr.bin/as/atof-generic.c b/gnu/usr.bin/as/atof-generic.c index 47a58b1409a4..55bdbc72d0a5 100644 --- a/gnu/usr.bin/as/atof-generic.c +++ b/gnu/usr.bin/as/atof-generic.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: atof-generic.c,v 1.2 1993/11/03 00:51:14 paul Exp $"; +static char rcsid[] = "$Id: atof-generic.c,v 1.3 1995/05/30 04:46:04 rgrimes Exp $";  #endif  #include <ctype.h> diff --git a/gnu/usr.bin/as/bignum-copy.c b/gnu/usr.bin/as/bignum-copy.c index ec90e39975ca..f1fe529c38e1 100644 --- a/gnu/usr.bin/as/bignum-copy.c +++ b/gnu/usr.bin/as/bignum-copy.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  #ifndef lint -static char rcsid[] = "$Id: bignum-copy.c,v 1.2 1993/11/03 00:51:16 paul Exp $"; +static char rcsid[] = "$Id: bignum-copy.c,v 1.3 1995/05/30 04:46:05 rgrimes Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/bignum.h b/gnu/usr.bin/as/bignum.h index 64efadc1f27c..f5e3a1dcacc9 100644 --- a/gnu/usr.bin/as/bignum.h +++ b/gnu/usr.bin/as/bignum.h @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: bignum.h,v 1.2 1993/11/03 00:51:18 paul Exp $ + * $Id: bignum.h,v 1.3 1995/05/30 04:46:06 rgrimes Exp $   */  /***********************************************************************\ diff --git a/gnu/usr.bin/as/bit_fix.h b/gnu/usr.bin/as/bit_fix.h index 14988ff2000e..91d526b515ff 100644 --- a/gnu/usr.bin/as/bit_fix.h +++ b/gnu/usr.bin/as/bit_fix.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: bit_fix.h,v 1.1 1993/11/03 00:51:19 paul Exp $ + * $Id: bit_fix.h,v 1.2 1995/05/30 04:46:07 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/cond.c b/gnu/usr.bin/as/cond.c index 3eb8db7f4114..74488f4dc957 100644 --- a/gnu/usr.bin/as/cond.c +++ b/gnu/usr.bin/as/cond.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: cond.c,v 1.2 1994/12/23 22:36:03 nate Exp $"; +static char rcsid[] = "$Id: cond.c,v 1.3 1995/05/30 04:46:08 rgrimes Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/config/Makefile.hp300 b/gnu/usr.bin/as/config/Makefile.hp300 index 4261d35b39bc..388501cf8dc8 100644 --- a/gnu/usr.bin/as/config/Makefile.hp300 +++ b/gnu/usr.bin/as/config/Makefile.hp300 @@ -1,5 +1,5 @@  #	from: @(#)Makefile.hp300	6.1 (Berkeley) 3/3/91 -#	$Id: Makefile.hp300,v 1.4 1993/10/16 03:23:04 cgd Exp $ +#	$Id: Makefile.hp300,v 1.1 1993/11/03 00:52:56 paul Exp $  CFLAGS+=	-Dm68851  SRCS+=		tc-m68k.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.i386 b/gnu/usr.bin/as/config/Makefile.i386 index 4cee91937bf9..06c3d737cfca 100644 --- a/gnu/usr.bin/as/config/Makefile.i386 +++ b/gnu/usr.bin/as/config/Makefile.i386 @@ -1,5 +1,5 @@  #	from: @(#)Makefile.i386	6.1 (Berkeley) 3/3/91 -#	$Id: Makefile.i386,v 1.2 1993/11/03 00:52:58 paul Exp $ +#	$Id: Makefile.i386,v 1.3 1994/12/23 22:37:31 nate Exp $  CFLAGS+=	-DNON_BROKEN_WORDS -DPIC  SRCS+=		tc-i386.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.pc532 b/gnu/usr.bin/as/config/Makefile.pc532 index d4b22aba6c80..5336a25a5eee 100644 --- a/gnu/usr.bin/as/config/Makefile.pc532 +++ b/gnu/usr.bin/as/config/Makefile.pc532 @@ -1,4 +1,4 @@ -#	$Id: Makefile.pc532,v 1.1 1993/10/16 03:23:37 cgd Exp $ +#	$Id: Makefile.pc532,v 1.1 1993/11/03 00:52:59 paul Exp $  SRCS+=		tc-ns32k.c atof-ns32k.c diff --git a/gnu/usr.bin/as/config/Makefile.sparc b/gnu/usr.bin/as/config/Makefile.sparc index 6dc9658536f7..2e9c8f197219 100644 --- a/gnu/usr.bin/as/config/Makefile.sparc +++ b/gnu/usr.bin/as/config/Makefile.sparc @@ -1,5 +1,5 @@  #	from: @(#)Makefile.i386	6.1 (Berkeley) 3/3/91 -#	$Id: Makefile.sparc,v 1.1 1993/11/03 00:53:00 paul Exp $ +#	$Id: Makefile.sparc,v 1.2 1994/12/23 22:37:31 nate Exp $  CFLAGS+=	-DNON_BROKEN_WORDS -DPIC  SRCS+=		tc-sparc.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.vax b/gnu/usr.bin/as/config/Makefile.vax index f62b087d3df3..060f15d9ddae 100644 --- a/gnu/usr.bin/as/config/Makefile.vax +++ b/gnu/usr.bin/as/config/Makefile.vax @@ -1,4 +1,4 @@  #	from: @(#)Makefile.vax	6.1 (Berkeley) 3/3/91 -#	$Id: Makefile.vax,v 1.3 1993/10/02 20:58:23 pk Exp $ +#	$Id: Makefile.vax,v 1.1 1993/11/03 00:53:01 paul Exp $  SRCS+=		tc-vax.c atof-vax.c diff --git a/gnu/usr.bin/as/config/atof-ieee.c b/gnu/usr.bin/as/config/atof-ieee.c index 7ab871d95b68..01a50d423053 100644 --- a/gnu/usr.bin/as/config/atof-ieee.c +++ b/gnu/usr.bin/as/config/atof-ieee.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: atof-ieee.c,v 1.5 1996/10/01 00:12:30 peter Exp $"; +static char rcsid[] = "$Id: atof-ieee.c,v 1.5.2.1 1998/02/15 15:20:00 jkh Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/config/ho-i386.h b/gnu/usr.bin/as/config/ho-i386.h index 04de36681d1c..7e7dbc330fce 100644 --- a/gnu/usr.bin/as/config/ho-i386.h +++ b/gnu/usr.bin/as/config/ho-i386.h @@ -17,7 +17,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: ho-i386.h,v 1.1 1993/11/03 00:53:21 paul Exp $ + * $Id: ho-i386.h,v 1.2 1995/05/30 04:46:55 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/config/obj-aout.h b/gnu/usr.bin/as/config/obj-aout.h index ff99f41015e8..ef754b2634c5 100644 --- a/gnu/usr.bin/as/config/obj-aout.h +++ b/gnu/usr.bin/as/config/obj-aout.h @@ -17,7 +17,7 @@     License along with GAS; see the file COPYING.  If not, write     to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -   $Id: obj-aout.h,v 1.4 1995/05/30 04:47:04 rgrimes Exp $ +   $Id: obj-aout.h,v 1.5 1996/10/01 00:12:37 peter Exp $   */ diff --git a/gnu/usr.bin/as/config/tc-i386.c b/gnu/usr.bin/as/config/tc-i386.c index 8d3982e1ea1e..1b1f9db23f1a 100644 --- a/gnu/usr.bin/as/config/tc-i386.c +++ b/gnu/usr.bin/as/config/tc-i386.c @@ -25,7 +25,7 @@    */  #ifndef lint -static char rcsid[] = "$Id: tc-i386.c,v 1.5 1996/10/01 00:12:43 peter Exp $"; +static char rcsid[] = "$Id: tc-i386.c,v 1.6 1996/10/03 08:07:38 peter Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/config/tc-i386.h b/gnu/usr.bin/as/config/tc-i386.h index fd4d335ab2d9..5dc82e144768 100644 --- a/gnu/usr.bin/as/config/tc-i386.h +++ b/gnu/usr.bin/as/config/tc-i386.h @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: tc-i386.h,v 1.2 1994/12/23 22:37:36 nate Exp $ + * $Id: tc-i386.h,v 1.3 1995/05/30 04:47:31 rgrimes Exp $   */  #ifndef TC_I386 diff --git a/gnu/usr.bin/as/config/tc-sparc.c b/gnu/usr.bin/as/config/tc-sparc.c index b82a52c0cb10..7dcbafc53cca 100644 --- a/gnu/usr.bin/as/config/tc-sparc.c +++ b/gnu/usr.bin/as/config/tc-sparc.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  #ifndef lint -static char rcsid[] = "$Id: tc-sparc.c,v 1.4 1995/05/30 04:47:49 rgrimes Exp $"; +static char rcsid[] = "$Id: tc-sparc.c,v 1.5 1996/10/01 00:13:16 peter Exp $";  #endif  #define cypress 1234 diff --git a/gnu/usr.bin/as/config/tc-sparc.h b/gnu/usr.bin/as/config/tc-sparc.h index c6dfa317da6c..0463ebef45fe 100644 --- a/gnu/usr.bin/as/config/tc-sparc.h +++ b/gnu/usr.bin/as/config/tc-sparc.h @@ -18,7 +18,7 @@     to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  /* - * $Id: tc-sparc.h,v 1.2 1994/12/23 22:37:41 nate Exp $ + * $Id: tc-sparc.h,v 1.3 1995/05/30 04:47:50 rgrimes Exp $   */  #define TC_SPARC 1 diff --git a/gnu/usr.bin/as/config/te-generic.h b/gnu/usr.bin/as/config/te-generic.h index f72d5ee95fea..8bf93bf4ad39 100644 --- a/gnu/usr.bin/as/config/te-generic.h +++ b/gnu/usr.bin/as/config/te-generic.h @@ -6,7 +6,7 @@   * compile, and copying as an aid for testing and porting.  xoxorich.   */  /* - * $Id: te-generic.h,v 1.1 1993/10/02 20:59:49 pk Exp $ + * $Id: te-generic.h,v 1.1 1993/11/03 00:55:03 paul Exp $   */ diff --git a/gnu/usr.bin/as/debug.c b/gnu/usr.bin/as/debug.c index d0a0c2d052ca..63e64dfdbfad 100644 --- a/gnu/usr.bin/as/debug.c +++ b/gnu/usr.bin/as/debug.c @@ -21,7 +21,7 @@  /* Routines for debug use only.  */  #ifndef lint -static char rcsid[] = "$Id: debug.c,v 1.1 1993/11/03 00:51:26 paul Exp $"; +static char rcsid[] = "$Id: debug.c,v 1.2 1995/05/30 04:46:09 rgrimes Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/doc/as-all.texinfo b/gnu/usr.bin/as/doc/as-all.texinfo index bc4779bc79e1..c9d749136a1f 100644 --- a/gnu/usr.bin/as/doc/as-all.texinfo +++ b/gnu/usr.bin/as/doc/as-all.texinfo @@ -63,7 +63,7 @@ done.  @page  @tex  \def\$#1${{#1}}  % Kluge: collect RCS revision info without $...$ -\xdef\manvers{\$Revision: 1.1 $}  % For use in headers, footers too +\xdef\manvers{\$Revision: 1.1.6.1 $}  % For use in headers, footers too  {\parskip=0pt  \hfill \manvers\par  \hfill \TeX{}info \texinfoversion\par diff --git a/gnu/usr.bin/as/expr.c b/gnu/usr.bin/as/expr.c index e846d5656189..3d7caa6ac36c 100644 --- a/gnu/usr.bin/as/expr.c +++ b/gnu/usr.bin/as/expr.c @@ -25,7 +25,7 @@   */  #ifndef lint -static char rcsid[] = "$Id: expr.c,v 1.3 1995/05/30 04:46:10 rgrimes Exp $"; +static char rcsid[] = "$Id: expr.c,v 1.4 1996/10/01 00:11:30 peter Exp $";  #endif  #include <ctype.h> diff --git a/gnu/usr.bin/as/expr.h b/gnu/usr.bin/as/expr.h index d0b68a53b013..52b591326c07 100644 --- a/gnu/usr.bin/as/expr.h +++ b/gnu/usr.bin/as/expr.h @@ -17,7 +17,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: expr.h,v 1.2 1993/11/03 00:51:31 paul Exp $ + * $Id: expr.h,v 1.3 1995/05/30 04:46:11 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/flo-const.c b/gnu/usr.bin/as/flo-const.c index 90f0af108bea..4df2e46309a6 100644 --- a/gnu/usr.bin/as/flo-const.c +++ b/gnu/usr.bin/as/flo-const.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: flo-const.c,v 1.1 1993/11/03 00:51:32 paul Exp $"; +static char rcsid[] = "$Id: flo-const.c,v 1.2 1995/05/30 04:46:12 rgrimes Exp $";  #endif  #include "flonum.h" diff --git a/gnu/usr.bin/as/flo-copy.c b/gnu/usr.bin/as/flo-copy.c index 6e1b30685d1c..8eb41627cf72 100644 --- a/gnu/usr.bin/as/flo-copy.c +++ b/gnu/usr.bin/as/flo-copy.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: flo-copy.c,v 1.1 1993/11/03 00:51:34 paul Exp $"; +static char rcsid[] = "$Id: flo-copy.c,v 1.2 1995/05/30 04:46:13 rgrimes Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/flonum-mult.c b/gnu/usr.bin/as/flonum-mult.c index 4fe8f38dbc0b..6b718758388b 100644 --- a/gnu/usr.bin/as/flonum-mult.c +++ b/gnu/usr.bin/as/flonum-mult.c @@ -19,7 +19,7 @@     notice and this notice must be preserved on all copies.  */  #ifndef lint -static char rcsid[] = "$Id: flonum-mult.c,v 1.2 1993/11/03 00:51:36 paul Exp $"; +static char rcsid[] = "$Id: flonum-mult.c,v 1.3 1995/05/30 04:46:14 rgrimes Exp $";  #endif  #include "flonum.h" diff --git a/gnu/usr.bin/as/flonum.h b/gnu/usr.bin/as/flonum.h index cc05dbf0267d..7bb3c0dec3ba 100644 --- a/gnu/usr.bin/as/flonum.h +++ b/gnu/usr.bin/as/flonum.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: flonum.h,v 1.2 1993/11/03 00:51:37 paul Exp $ + * $Id: flonum.h,v 1.3 1995/05/30 04:46:15 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/frags.c b/gnu/usr.bin/as/frags.c index 71f4669b3f5e..262e058a25b9 100644 --- a/gnu/usr.bin/as/frags.c +++ b/gnu/usr.bin/as/frags.c @@ -19,7 +19,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: frags.c,v 1.2 1993/11/03 00:51:39 paul Exp $"; +static char rcsid[] = "$Id: frags.c,v 1.3 1995/05/30 04:46:16 rgrimes Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/frags.h b/gnu/usr.bin/as/frags.h index 0e82c65f362a..23753a7a44e7 100644 --- a/gnu/usr.bin/as/frags.h +++ b/gnu/usr.bin/as/frags.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: frags.h,v 1.2 1993/11/03 00:51:40 paul Exp $ + * $Id: frags.h,v 1.3 1995/05/30 04:46:17 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/hash.c b/gnu/usr.bin/as/hash.c index 70068ea81ab9..8fccf2787e16 100644 --- a/gnu/usr.bin/as/hash.c +++ b/gnu/usr.bin/as/hash.c @@ -123,7 +123,7 @@   */  #ifndef lint -static char rcsid[] = "$Id: hash.c,v 1.3 1995/05/30 04:46:18 rgrimes Exp $"; +static char rcsid[] = "$Id: hash.c,v 1.4 1995/12/01 08:19:12 jkh Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/as/hash.h b/gnu/usr.bin/as/hash.h index 034c2aa62c31..c9a2ab2db95d 100644 --- a/gnu/usr.bin/as/hash.h +++ b/gnu/usr.bin/as/hash.h @@ -17,7 +17,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: hash.h,v 1.2 1993/11/03 00:51:46 paul Exp $ + * $Id: hash.h,v 1.3 1995/05/30 04:46:19 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/hex-value.c b/gnu/usr.bin/as/hex-value.c index 432aa0242210..f55a64bc947e 100644 --- a/gnu/usr.bin/as/hex-value.c +++ b/gnu/usr.bin/as/hex-value.c @@ -23,7 +23,7 @@   */  #ifndef lint -static char rcsid[] = "$Id: hex-value.c,v 1.2 1993/11/03 00:51:47 paul Exp $"; +static char rcsid[] = "$Id: hex-value.c,v 1.3 1995/05/30 04:46:20 rgrimes Exp $";  #endif  #define __ (42)			/* blatently illegal digit value */ diff --git a/gnu/usr.bin/as/input-file.c b/gnu/usr.bin/as/input-file.c index 39e19ac0c52a..86c6a7734c84 100644 --- a/gnu/usr.bin/as/input-file.c +++ b/gnu/usr.bin/as/input-file.c @@ -25,7 +25,7 @@   */  #ifndef lint -static char rcsid[] = "$Id: input-file.c,v 1.2 1993/11/03 00:51:48 paul Exp $"; +static char rcsid[] = "$Id: input-file.c,v 1.3 1995/05/30 04:46:21 rgrimes Exp $";  #endif  #ifdef USG diff --git a/gnu/usr.bin/as/input-file.h b/gnu/usr.bin/as/input-file.h index 0c6da7d004e5..b9fb65fd04a9 100644 --- a/gnu/usr.bin/as/input-file.h +++ b/gnu/usr.bin/as/input-file.h @@ -20,7 +20,7 @@  /*"input_file.c":Operating-system dependant functions to read source files.*/  /* - * $Id: input-file.h,v 1.2 1993/11/03 00:51:50 paul Exp $ + * $Id: input-file.h,v 1.3 1995/05/30 04:46:22 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/input-scrub.c b/gnu/usr.bin/as/input-scrub.c index 0e0a1790f3bd..47ba0d29f734 100644 --- a/gnu/usr.bin/as/input-scrub.c +++ b/gnu/usr.bin/as/input-scrub.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  #ifndef lint -static char rcsid[] = "$Id: input-scrub.c,v 1.3 1994/12/23 22:36:05 nate Exp $"; +static char rcsid[] = "$Id: input-scrub.c,v 1.4 1995/05/30 04:46:23 rgrimes Exp $";  #endif  #include <errno.h>		/* Need this to make errno declaration right */ diff --git a/gnu/usr.bin/as/listing.c b/gnu/usr.bin/as/listing.c index f79a8b451041..332d4df9e6bf 100644 --- a/gnu/usr.bin/as/listing.c +++ b/gnu/usr.bin/as/listing.c @@ -92,7 +92,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  */  #ifndef lint -static char rcsid[] = "$Id: listing.c,v 1.2 1994/12/23 22:36:08 nate Exp $"; +static char rcsid[] = "$Id: listing.c,v 1.3 1995/05/30 04:46:24 rgrimes Exp $";  #endif  #include <ctype.h> diff --git a/gnu/usr.bin/as/listing.h b/gnu/usr.bin/as/listing.h index 2220c35eb4c2..fde349b11e4a 100644 --- a/gnu/usr.bin/as/listing.h +++ b/gnu/usr.bin/as/listing.h @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: listing.h,v 1.1 1993/11/03 00:51:56 paul Exp $ + * $Id: listing.h,v 1.2 1994/12/23 22:36:10 nate Exp $   */  #ifndef __listing_h__ diff --git a/gnu/usr.bin/as/makefile.dos b/gnu/usr.bin/as/makefile.dos index 89c74c787361..b9f7197c5fd6 100644 --- a/gnu/usr.bin/as/makefile.dos +++ b/gnu/usr.bin/as/makefile.dos @@ -17,7 +17,7 @@  #along with GNU GAS; see the file COPYING.  If not, write to  #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# $Id: makefile.dos,v 1.1 1993/10/02 20:57:43 pk Exp $ +# $Id: makefile.dos,v 1.1 1993/11/03 00:51:59 paul Exp $  # The targets for external use include:  # all, doc, proto, install, uninstall, includes, TAGS, diff --git a/gnu/usr.bin/as/messages.c b/gnu/usr.bin/as/messages.c index 55e97d943ef8..e46d371d8d86 100644 --- a/gnu/usr.bin/as/messages.c +++ b/gnu/usr.bin/as/messages.c @@ -18,7 +18,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  #ifndef lint -static char rcsid[] = "$Id: messages.c,v 1.3 1994/12/23 22:36:12 nate Exp $"; +static char rcsid[] = "$Id: messages.c,v 1.4 1995/05/30 04:46:25 rgrimes Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/as/obj.h b/gnu/usr.bin/as/obj.h index a621941004ae..000641a3c613 100644 --- a/gnu/usr.bin/as/obj.h +++ b/gnu/usr.bin/as/obj.h @@ -19,7 +19,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: obj.h,v 1.1 1993/11/03 00:52:03 paul Exp $ + * $Id: obj.h,v 1.2 1995/05/30 04:46:26 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/obstack.c b/gnu/usr.bin/as/obstack.c index d7302ea1f5d4..b36bdada55ea 100644 --- a/gnu/usr.bin/as/obstack.c +++ b/gnu/usr.bin/as/obstack.c @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software  Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: obstack.c,v 1.3 1993/10/02 20:57:47 pk Exp $"; +static char rcsid[] = "$Id: obstack.c,v 1.2 1993/11/03 00:52:04 paul Exp $";  #endif  #include "obstack.h" diff --git a/gnu/usr.bin/as/obstack.h b/gnu/usr.bin/as/obstack.h index c29bb1f47921..cd847ed7ec82 100644 --- a/gnu/usr.bin/as/obstack.h +++ b/gnu/usr.bin/as/obstack.h @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License  along with this program; if not, write to the Free Software  Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: obstack.h,v 1.2 1993/11/03 00:52:06 paul Exp $ + * $Id: obstack.h,v 1.3 1995/05/30 04:46:27 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/opcode/a29k.h b/gnu/usr.bin/as/opcode/a29k.h index 8c3616747f09..1d34ff8f5ec9 100644 --- a/gnu/usr.bin/as/opcode/a29k.h +++ b/gnu/usr.bin/as/opcode/a29k.h @@ -285,6 +285,9 @@ CONST unsigned int num_opcodes = (((sizeof a29k_opcodes) / (sizeof a29k_opcodes[  /*   * $Log: a29k.h,v $ + * Revision 1.1  1993/11/03 00:55:48  paul + * Brought over NetBSD's gas ready for pk's shared libs. + *   * Revision 1.1  1993/10/02  21:00:40  pk   * GNU gas 1.92.3 based assembler supporting PIC code (for i386 and sparc).   * diff --git a/gnu/usr.bin/as/opcode/i386.h b/gnu/usr.bin/as/opcode/i386.h index 4cb639ecc09e..bed1c9842a79 100644 --- a/gnu/usr.bin/as/opcode/i386.h +++ b/gnu/usr.bin/as/opcode/i386.h @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License  along with GAS; see the file COPYING.  If not, write to  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */ -/* $Id: i386.h,v 1.4.2.2 1998/02/15 15:20:01 jkh Exp $ */ +/* $Id: i386.h,v 1.4.2.3 1998/04/12 18:12:38 jdp Exp $ */  static const template i386_optab[] = { diff --git a/gnu/usr.bin/as/opcode/i960.h b/gnu/usr.bin/as/opcode/i960.h index 6a6ad42536bd..c32f7ae5ea52 100644 --- a/gnu/usr.bin/as/opcode/i960.h +++ b/gnu/usr.bin/as/opcode/i960.h @@ -18,7 +18,7 @@   * appropriate.   */ -/* $Id: i960.h,v 1.1 1993/11/03 00:55:56 paul Exp $ */ +/* $Id: i960.h,v 1.2 1995/05/30 04:48:03 rgrimes Exp $ */  #define CTRL	0  #define COBR	1 diff --git a/gnu/usr.bin/as/opcode/sparc.h b/gnu/usr.bin/as/opcode/sparc.h index 7921cf597f43..b5e8d5e33114 100644 --- a/gnu/usr.bin/as/opcode/sparc.h +++ b/gnu/usr.bin/as/opcode/sparc.h @@ -20,7 +20,7 @@ along with GAS or GDB; see the file COPYING.	If not, write to  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.	*/  /* - * $Id: sparc.h,v 1.2 1994/12/23 22:37:45 nate Exp $ + * $Id: sparc.h,v 1.3 1995/05/30 04:48:14 rgrimes Exp $   */   /* FIXME-someday: perhaps the ,a's and such should be embedded in the diff --git a/gnu/usr.bin/as/output-file.c b/gnu/usr.bin/as/output-file.c index 1a8683be431f..27bcd8e615f0 100644 --- a/gnu/usr.bin/as/output-file.c +++ b/gnu/usr.bin/as/output-file.c @@ -27,7 +27,7 @@  /* note that we do need config info.  xoxorich. */  #ifndef lint -static char rcsid[] = "$Id: output-file.c,v 1.2 1993/11/03 00:52:08 paul Exp $"; +static char rcsid[] = "$Id: output-file.c,v 1.3 1995/05/30 04:46:29 rgrimes Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/as/output-file.h b/gnu/usr.bin/as/output-file.h index 37878ab6d143..26e8e45073b3 100644 --- a/gnu/usr.bin/as/output-file.h +++ b/gnu/usr.bin/as/output-file.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: output-file.h,v 1.1 1993/11/03 00:52:10 paul Exp $ + * $Id: output-file.h,v 1.2 1995/05/30 04:46:30 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/read.c b/gnu/usr.bin/as/read.c index 6832e36f4cf2..5eb1ae99adfc 100644 --- a/gnu/usr.bin/as/read.c +++ b/gnu/usr.bin/as/read.c @@ -19,7 +19,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */  #ifndef lint -static char rcsid[] = "$Id: read.c,v 1.7.2.2 1997/04/29 02:16:51 jdp Exp $"; +static char rcsid[] = "$Id: read.c,v 1.7.2.3 1998/01/28 16:34:14 jdp Exp $";  #endif  #define MASK_CHAR (0xFF)	/* If your chars aren't 8 bits, you will diff --git a/gnu/usr.bin/as/read.h b/gnu/usr.bin/as/read.h index be5767d82d81..7c9a2a306021 100644 --- a/gnu/usr.bin/as/read.h +++ b/gnu/usr.bin/as/read.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: read.h,v 1.5 1995/05/30 04:46:32 rgrimes Exp $ + * $Id: read.h,v 1.6 1996/10/01 00:11:45 peter Exp $   */ diff --git a/gnu/usr.bin/as/struc-symbol.h b/gnu/usr.bin/as/struc-symbol.h index fd7fd816df70..9b74064194c8 100644 --- a/gnu/usr.bin/as/struc-symbol.h +++ b/gnu/usr.bin/as/struc-symbol.h @@ -17,7 +17,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: struc-symbol.h,v 1.5 1995/05/30 04:46:33 rgrimes Exp $ + * $Id: struc-symbol.h,v 1.6 1996/10/01 00:11:48 peter Exp $   */ diff --git a/gnu/usr.bin/as/subsegs.c b/gnu/usr.bin/as/subsegs.c index 4bca715b0349..dda307cc1c23 100644 --- a/gnu/usr.bin/as/subsegs.c +++ b/gnu/usr.bin/as/subsegs.c @@ -22,7 +22,7 @@   */  #ifndef lint -static char rcsid[] = "$Id: subsegs.c,v 1.4 1995/05/30 04:46:34 rgrimes Exp $"; +static char rcsid[] = "$Id: subsegs.c,v 1.5 1996/10/01 00:11:54 peter Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/subsegs.h b/gnu/usr.bin/as/subsegs.h index 9d1482a94588..7c10a8f55f51 100644 --- a/gnu/usr.bin/as/subsegs.h +++ b/gnu/usr.bin/as/subsegs.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: subsegs.h,v 1.2 1993/11/03 00:52:20 paul Exp $ + * $Id: subsegs.h,v 1.3 1995/05/30 04:46:35 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/symbols.c b/gnu/usr.bin/as/symbols.c index 441f528be6cc..a2adf0ae6f2f 100644 --- a/gnu/usr.bin/as/symbols.c +++ b/gnu/usr.bin/as/symbols.c @@ -19,7 +19,7 @@     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  #ifndef lint -static char rcsid[] = "$Id: symbols.c,v 1.3 1995/05/30 04:46:36 rgrimes Exp $"; +static char rcsid[] = "$Id: symbols.c,v 1.4 1996/10/01 00:11:57 peter Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/symbols.h b/gnu/usr.bin/as/symbols.h index 0906e9d38093..11ad6375dc72 100644 --- a/gnu/usr.bin/as/symbols.h +++ b/gnu/usr.bin/as/symbols.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: symbols.h,v 1.2 1993/11/03 00:52:23 paul Exp $ + * $Id: symbols.h,v 1.3 1995/05/30 04:46:37 rgrimes Exp $   */ diff --git a/gnu/usr.bin/as/tc.h b/gnu/usr.bin/as/tc.h index fa71bd528115..39133216a91f 100644 --- a/gnu/usr.bin/as/tc.h +++ b/gnu/usr.bin/as/tc.h @@ -18,7 +18,7 @@     along with GAS; see the file COPYING.  If not, write to     the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */  /* - * $Id: tc.h,v 1.2 1995/05/30 04:46:38 rgrimes Exp $ + * $Id: tc.h,v 1.3 1996/10/01 00:12:02 peter Exp $   */ diff --git a/gnu/usr.bin/as/testscripts/doboth b/gnu/usr.bin/as/testscripts/doboth index 6b46a03eb125..dc379e93d3fb 100755 --- a/gnu/usr.bin/as/testscripts/doboth +++ b/gnu/usr.bin/as/testscripts/doboth @@ -1,5 +1,5 @@  #!/bin/sh -# $Id: doboth,v 1.1 1993/10/02 21:01:07 pk Exp $ +# $Id: doboth,v 1.1 1993/11/03 00:56:17 paul Exp $  x=$1 ; shift  y=$1 ; shift diff --git a/gnu/usr.bin/as/testscripts/doobjcmp b/gnu/usr.bin/as/testscripts/doobjcmp index 6c90cf9a05ff..9fe6d907558e 100755 --- a/gnu/usr.bin/as/testscripts/doobjcmp +++ b/gnu/usr.bin/as/testscripts/doobjcmp @@ -1,5 +1,5 @@  #!/bin/sh -# $Id: doobjcmp,v 1.1 1993/10/02 21:01:08 pk Exp $ +# $Id: doobjcmp,v 1.1 1993/11/03 00:56:18 paul Exp $  # compare two object files, in depth.  x=$1 diff --git a/gnu/usr.bin/as/testscripts/dostriptest b/gnu/usr.bin/as/testscripts/dostriptest index aa734c0c2b9f..6f0c2918aeed 100755 --- a/gnu/usr.bin/as/testscripts/dostriptest +++ b/gnu/usr.bin/as/testscripts/dostriptest @@ -1,5 +1,5 @@  #!/bin/sh -# $Id: dostriptest,v 1.1 1993/10/02 21:01:09 pk Exp $ +# $Id: dostriptest,v 1.1 1993/11/03 00:56:19 paul Exp $  x=striptest.xx.$$  y=striptest.yy.$$ diff --git a/gnu/usr.bin/as/testscripts/dotest b/gnu/usr.bin/as/testscripts/dotest index 051ee11ef790..ff39433d32b9 100755 --- a/gnu/usr.bin/as/testscripts/dotest +++ b/gnu/usr.bin/as/testscripts/dotest @@ -1,6 +1,6 @@  #!/bin/sh  # ad hoc debug tool -# $Id: dotest,v 1.1 1993/10/02 21:01:10 pk Exp $ +# $Id: dotest,v 1.1 1993/11/03 00:56:21 paul Exp $  x=$1  y=$2 diff --git a/gnu/usr.bin/as/testscripts/dounsortreloc b/gnu/usr.bin/as/testscripts/dounsortreloc index 0a4771c6425e..b990553fa6e7 100755 --- a/gnu/usr.bin/as/testscripts/dounsortreloc +++ b/gnu/usr.bin/as/testscripts/dounsortreloc @@ -1,5 +1,5 @@  #!/bin/sh -# $Id: dounsortreloc,v 1.1 1993/10/02 21:01:11 pk Exp $ +# $Id: dounsortreloc,v 1.1 1993/11/03 00:56:22 paul Exp $  # objdump the reloc table, but strip off the headings and reloc  # numbers and sort the result.  Intended for use in comparing reloc  # tables that may not be in the same order. diff --git a/gnu/usr.bin/as/testscripts/dounsortsymbols b/gnu/usr.bin/as/testscripts/dounsortsymbols index 2dc5acd65e00..480fe555317e 100755 --- a/gnu/usr.bin/as/testscripts/dounsortsymbols +++ b/gnu/usr.bin/as/testscripts/dounsortsymbols @@ -1,5 +1,5 @@  #!/bin/sh -# $Id: dounsortsymbols,v 1.1 1993/10/02 21:01:12 pk Exp $ +# $Id: dounsortsymbols,v 1.1 1993/11/03 00:56:24 paul Exp $  # objdump the symbol table, but strip off the headings and symbol  # numbers and sort the result.  Intended for use in comparing symbol  # tables that may not be in the same order. diff --git a/gnu/usr.bin/as/version.c b/gnu/usr.bin/as/version.c index c18109a7a414..64c4caa4b6e1 100644 --- a/gnu/usr.bin/as/version.c +++ b/gnu/usr.bin/as/version.c @@ -16,10 +16,10 @@ const     */  #ifndef lint -static char rcsid[] = "$Id: version.c,v 1.3 1994/02/14 21:18:05 nate Exp $"; +static char rcsid[] = "$Id: version.c,v 1.4 1995/05/30 04:46:39 rgrimes Exp $";  #endif -char version_string[] = "GNU assembler version 1.92.3, FreeBSD $Revision: 1.3 $\n"; +char version_string[] = "GNU assembler version 1.92.3, FreeBSD $Revision: 1.4 $\n";  #ifdef HO_VMS  dummy3() diff --git a/gnu/usr.bin/as/write.c b/gnu/usr.bin/as/write.c index 7510d2d5db6d..cf794999f1fd 100644 --- a/gnu/usr.bin/as/write.c +++ b/gnu/usr.bin/as/write.c @@ -21,7 +21,7 @@  /* This thing should be set up to do byteordering correctly.  But... */  #ifndef lint -static char rcsid[] = "$Id: write.c,v 1.7 1995/05/30 04:46:40 rgrimes Exp $"; +static char rcsid[] = "$Id: write.c,v 1.8 1996/10/01 00:12:04 peter Exp $";  #endif  #include "as.h" diff --git a/gnu/usr.bin/as/xmalloc.c b/gnu/usr.bin/as/xmalloc.c index 4ecb289237de..b6a6932c1e53 100644 --- a/gnu/usr.bin/as/xmalloc.c +++ b/gnu/usr.bin/as/xmalloc.c @@ -42,7 +42,7 @@    */  #ifndef lint -static char rcsid[] = "$Id: xmalloc.c,v 1.2 1993/11/03 00:52:32 paul Exp $"; +static char rcsid[] = "$Id: xmalloc.c,v 1.3 1995/05/30 04:46:42 rgrimes Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/as/xrealloc.c b/gnu/usr.bin/as/xrealloc.c index 8b2db1623d57..057d4a27dac1 100644 --- a/gnu/usr.bin/as/xrealloc.c +++ b/gnu/usr.bin/as/xrealloc.c @@ -43,7 +43,7 @@    */  #ifndef lint -static char rcsid[] = "$Id: xrealloc.c,v 1.2 1993/11/03 00:52:34 paul Exp $"; +static char rcsid[] = "$Id: xrealloc.c,v 1.3 1995/05/30 04:46:42 rgrimes Exp $";  #endif diff --git a/gnu/usr.bin/bc/bc.1 b/gnu/usr.bin/bc/bc.1 index 2aef706119a7..480087b055f3 100644 --- a/gnu/usr.bin/bc/bc.1 +++ b/gnu/usr.bin/bc/bc.1 @@ -25,7 +25,7 @@  .\" Western Washington University  .\" Bellingham, WA 98226-9062  .\" -.\" $Id: bc.1,v 1.4 1996/11/04 03:54:58 steve Exp $ +.\" $Id: bc.1,v 1.3.2.1 1996/11/06 09:23:50 phk Exp $  .\"  .TH bc 1 .\" "Command Manual" v1.03 "Nov 2, 1994"  .SH NAME diff --git a/gnu/usr.bin/bison/Makefile b/gnu/usr.bin/bison/Makefile index 89f0ed597786..696e4fc4a571 100644 --- a/gnu/usr.bin/bison/Makefile +++ b/gnu/usr.bin/bison/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1996/09/10 13:23:43 peter Exp $  .PATH:	${.CURDIR}/../../../contrib/bison diff --git a/gnu/usr.bin/bison/data/Makefile b/gnu/usr.bin/bison/data/Makefile index 55bb8e31684f..711477fdf341 100644 --- a/gnu/usr.bin/bison/data/Makefile +++ b/gnu/usr.bin/bison/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/10/27 21:50:59 joerg Exp $ +# $Id: Makefile,v 1.2.2.1 1997/08/21 12:39:00 jmg Exp $  BISONDIR=${.CURDIR}/../../../../contrib/bison diff --git a/gnu/usr.bin/bison/doc/Makefile b/gnu/usr.bin/bison/doc/Makefile index e8cbe7c9cadc..43c497b0ed61 100644 --- a/gnu/usr.bin/bison/doc/Makefile +++ b/gnu/usr.bin/bison/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/09/10 13:23:46 peter Exp $ +# $Id: Makefile,v 1.1.2.1 1997/04/11 16:58:15 asami Exp $  INFO = bison  INFOSECTION= "Programming & development tools." diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile index 0ee469fa7547..c720c65bf3ce 100644 --- a/gnu/usr.bin/cc/Makefile +++ b/gnu/usr.bin/cc/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.6 1996/09/19 15:37:58 peter Exp $ +# $Id: Makefile,v 1.7 1996/10/13 17:37:02 peter Exp $  #  # The order of some of these are rather important.  Some depend on previous diff --git a/gnu/usr.bin/cc/Makefile.inc b/gnu/usr.bin/cc/Makefile.inc index 4e898c5462a2..6a01bc11e2de 100644 --- a/gnu/usr.bin/cc/Makefile.inc +++ b/gnu/usr.bin/cc/Makefile.inc @@ -1,5 +1,5 @@  # -# $Id: Makefile.inc,v 1.17 1996/10/01 03:44:29 peter Exp $ +# $Id: Makefile.inc,v 1.17.2.1 1998/07/08 13:03:00 jkh Exp $  #  # Sometimes this is .include'd several times... diff --git a/gnu/usr.bin/cc/c++/Makefile b/gnu/usr.bin/cc/c++/Makefile index 66fe7bc958eb..219ea85775bc 100644 --- a/gnu/usr.bin/cc/c++/Makefile +++ b/gnu/usr.bin/cc/c++/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.5.6.1 1998/03/08 22:53:50 obrien Exp $ +# $Id: Makefile,v 1.5.6.2 1998/03/18 12:29:08 obrien Exp $  #  PROG =	c++ diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile index 5e801de45adb..d8d3201a49a1 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile +++ b/gnu/usr.bin/cc/c++filt/Makefile @@ -1,5 +1,5 @@  # -# $Id$ +# $Id: Makefile,v 1.1 1996/10/13 17:37:03 peter Exp $  #  PROG =	c++filt diff --git a/gnu/usr.bin/cc/cc/Makefile b/gnu/usr.bin/cc/cc/Makefile index f62c1d9c813e..6c69712fc687 100644 --- a/gnu/usr.bin/cc/cc/Makefile +++ b/gnu/usr.bin/cc/cc/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.9 1996/02/09 16:18:56 mpp Exp $ +# $Id: Makefile,v 1.10 1996/09/19 15:38:13 peter Exp $  #  PROG =	cc diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile index a6b67f21f04c..0ce0311fea46 100644 --- a/gnu/usr.bin/cc/cc1/Makefile +++ b/gnu/usr.bin/cc/cc1/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.9 1996/09/21 14:27:26 peter Exp $ +# $Id: Makefile,v 1.9.2.1 1997/06/29 06:05:03 pst Exp $  #  PROG =	cc1 diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile index f82c44fe2fbe..ff70d1f98b0c 100644 --- a/gnu/usr.bin/cc/cc1obj/Makefile +++ b/gnu/usr.bin/cc/cc1obj/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.2 1996/09/21 14:27:29 peter Exp $ +# $Id: Makefile,v 1.2.2.1 1997/06/29 06:05:06 pst Exp $  #  PROG =	cc1obj diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile index e3817d8ac0bc..d0ec69ee4db9 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile +++ b/gnu/usr.bin/cc/cc1plus/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.9.2.1 1997/06/29 06:05:07 pst Exp $ +# $Id: Makefile,v 1.9.2.2 1997/10/26 22:47:41 jkh Exp $  #  #First, so that we get cp/tree.c and cp/expr.c instead of the C version diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index a3b940c62d61..a45dc333cf4d 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.11 1996/09/21 17:49:45 jkh Exp $ +# $Id: Makefile,v 1.11.2.1 1997/06/29 06:05:09 pst Exp $  #  .include "../Makefile.inc" diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 53c169d30a1c..e275c650fd87 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.1.2.1 1997/10/26 22:47:42 jkh Exp $ +# $Id: Makefile,v 1.1.2.2 1998/07/08 13:03:06 jkh Exp $  #  # diff --git a/gnu/usr.bin/cc/cpp/Makefile b/gnu/usr.bin/cc/cpp/Makefile index 6094ecea478e..0ac9c4d18d35 100644 --- a/gnu/usr.bin/cc/cpp/Makefile +++ b/gnu/usr.bin/cc/cpp/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.7 1996/09/23 16:12:38 bde Exp $ +# $Id: Makefile,v 1.7.2.1 1997/10/26 22:47:43 jkh Exp $  #  PROG =	cpp diff --git a/gnu/usr.bin/cc/doc/Makefile b/gnu/usr.bin/cc/doc/Makefile index 2826535db62a..0b378ad2a6af 100644 --- a/gnu/usr.bin/cc/doc/Makefile +++ b/gnu/usr.bin/cc/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/19 15:47:47 peter Exp $ +# $Id: Makefile,v 1.3.2.1 1997/04/11 16:58:17 asami Exp $  INFO = gcc cpp reno gxxint diff --git a/gnu/usr.bin/cc/f77/Makefile b/gnu/usr.bin/cc/f77/Makefile index e7ed05100edb..fed2b5693e20 100644 --- a/gnu/usr.bin/cc/f77/Makefile +++ b/gnu/usr.bin/cc/f77/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.1 1994/10/25 14:36:49 ljo Exp $ +# $Id: Makefile,v 1.2 1996/01/16 10:21:40 graichen Exp $  #  PROG =	f77 diff --git a/gnu/usr.bin/cc/f77/f77.1 b/gnu/usr.bin/cc/f77/f77.1 index b4e4582182f2..8d86acbb2f2c 100644 --- a/gnu/usr.bin/cc/f77/f77.1 +++ b/gnu/usr.bin/cc/f77/f77.1 @@ -1,4 +1,4 @@ -.\"	$Id$ +.\"	$Id: f77.1,v 1.1.4.1 1998/03/03 06:15:50 jkh Exp $  .\"  .Dd July 22, 1995  .Dt F77 1 diff --git a/gnu/usr.bin/cc/libgcc/Makefile b/gnu/usr.bin/cc/libgcc/Makefile index 9117c5279beb..4888a43cbd10 100644 --- a/gnu/usr.bin/cc/libgcc/Makefile +++ b/gnu/usr.bin/cc/libgcc/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.12 1996/09/21 14:27:38 peter Exp $ +# $Id: Makefile,v 1.13 1996/10/01 03:47:36 peter Exp $  #  LIB=	gcc diff --git a/gnu/usr.bin/cpio/Makefile b/gnu/usr.bin/cpio/Makefile index 9995c2e219fa..cc8ecc6cb079 100644 --- a/gnu/usr.bin/cpio/Makefile +++ b/gnu/usr.bin/cpio/Makefile @@ -1,7 +1,7 @@  # Note that this files is under a "BSD" copyright (c) by David O'Brien 1997,   # even though it may live in src/gnu/... -# $Id: Makefile,v 1.6 1997/04/03 11:20:09 obrien Exp $ +# $Id: Makefile,v 1.3.2.1 1997/08/21 08:24:08 obrien Exp $  .PATH:	${.CURDIR}/../../../contrib/cpio diff --git a/gnu/usr.bin/cpio/doc/Makefile b/gnu/usr.bin/cpio/doc/Makefile index 050e0e9e1991..f2086ba6d4e4 100644 --- a/gnu/usr.bin/cpio/doc/Makefile +++ b/gnu/usr.bin/cpio/doc/Makefile @@ -1,7 +1,7 @@  # Note that this files is under a "BSD" copyright (c) by David O'Brien 1997,   # even though it may live in src/gnu/... -# $Id: Makefile,v 1.2 1997/08/21 08:26:55 obrien Exp $ +# $Id: Makefile,v 1.2.2.1 1997/08/21 08:50:35 obrien Exp $  .PATH:	${.CURDIR}/../../../../contrib/cpio diff --git a/gnu/usr.bin/cvs/Makefile b/gnu/usr.bin/cvs/Makefile index ae97b5f5edb3..43bdfff34338 100644 --- a/gnu/usr.bin/cvs/Makefile +++ b/gnu/usr.bin/cvs/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.8 1996/08/20 23:52:29 peter Exp $ +#	$Id: Makefile,v 1.8.2.1 1998/04/05 03:22:19 peter Exp $  SUBDIR = lib libdiff cvs contrib cvsbug doc tools diff --git a/gnu/usr.bin/cvs/contrib/Makefile b/gnu/usr.bin/cvs/contrib/Makefile index 47d2df50ab7a..932114cc3918 100644 --- a/gnu/usr.bin/cvs/contrib/Makefile +++ b/gnu/usr.bin/cvs/contrib/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.6.2.1 1997/06/28 03:27:49 peter Exp $ +#	$Id: Makefile,v 1.6.2.2 1998/04/05 03:22:24 peter Exp $  .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/contrib/easy-import.pl b/gnu/usr.bin/cvs/contrib/easy-import.pl index 0d7defec45c2..67bbdf333577 100644 --- a/gnu/usr.bin/cvs/contrib/easy-import.pl +++ b/gnu/usr.bin/cvs/contrib/easy-import.pl @@ -8,7 +8,7 @@  #  # Written by Jörg Wunsch, 95/03/07, and placed in the public domain.  # -# $Id: easy-import.pl,v 1.9.2.2 1997/06/28 03:27:50 peter Exp $ +# $Id: easy-import.pl,v 1.9.2.3 1997/08/22 07:04:30 peter Exp $  require "complete.pl";  require "getopts.pl"; @@ -22,7 +22,7 @@ sub scan_opts      $dont_do_it = "-n" if $opt_n;      if($opt_v) { -	print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.9.2.2 $' . "\n"; # 'emacs kludge +	print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.9.2.3 $' . "\n"; # 'emacs kludge  	exit 0;      }      die "usage: $0 [-v] [-n] [moduledir]\n" . diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index fe114fdaf10c..31111cb7941b 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.14.2.1 1997/06/28 03:27:50 peter Exp $ +#	$Id: Makefile,v 1.14.2.2 1998/04/05 03:22:25 peter Exp $  .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/cvsbug/Makefile b/gnu/usr.bin/cvs/cvsbug/Makefile index 15829bcc1a2f..133eecf9d6ff 100644 --- a/gnu/usr.bin/cvs/cvsbug/Makefile +++ b/gnu/usr.bin/cvs/cvsbug/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.4.2.1 1997/06/28 03:27:51 peter Exp $ +#	$Id: Makefile,v 1.4.2.2 1998/04/05 03:22:27 peter Exp $  .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/doc/Makefile b/gnu/usr.bin/cvs/doc/Makefile index 01fa0e120da0..c0a58165393e 100644 --- a/gnu/usr.bin/cvs/doc/Makefile +++ b/gnu/usr.bin/cvs/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5.2.1 1997/04/11 16:58:19 asami Exp $ +# $Id: Makefile,v 1.5.2.2 1997/06/28 03:27:52 peter Exp $  .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/lib/Makefile b/gnu/usr.bin/cvs/lib/Makefile index 2760f55b9bad..f5961fb55726 100644 --- a/gnu/usr.bin/cvs/lib/Makefile +++ b/gnu/usr.bin/cvs/lib/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.11 1996/08/20 23:56:38 peter Exp $ +#	$Id: Makefile,v 1.11.2.1 1997/06/28 03:27:52 peter Exp $  .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/libdiff/Makefile b/gnu/usr.bin/cvs/libdiff/Makefile index b5b41cc5157f..0560ed3ef46b 100644 --- a/gnu/usr.bin/cvs/libdiff/Makefile +++ b/gnu/usr.bin/cvs/libdiff/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.1 1998/01/26 04:14:21 peter Exp $ +#	$Id: Makefile,v 1.1.2.1 1998/04/05 03:22:30 peter Exp $  .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/tools/Makefile b/gnu/usr.bin/cvs/tools/Makefile index eb0f37f81134..4953e00701c8 100644 --- a/gnu/usr.bin/cvs/tools/Makefile +++ b/gnu/usr.bin/cvs/tools/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.1 1996/08/21 00:04:28 peter Exp $ +#	$Id: Makefile,v 1.1.2.1 1998/04/05 03:22:30 peter Exp $  FILES=	INSTALL NEWS README \  	pcl-cvs-lucid.el pcl-cvs-startup.el \ diff --git a/gnu/usr.bin/dialog/Makefile b/gnu/usr.bin/dialog/Makefile index 436519a7e32a..f6ae2938cedc 100644 --- a/gnu/usr.bin/dialog/Makefile +++ b/gnu/usr.bin/dialog/Makefile @@ -1,5 +1,5 @@  # Makefile for dialog -# $Id: Makefile,v 1.3 1994/10/11 23:51:06 ache Exp $ +# $Id: Makefile,v 1.4 1994/10/28 03:12:45 ache Exp $  PROG=   dialog  MAN1=   dialog.1 diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile index a6bc38509bd3..b4b1378b100b 100644 --- a/gnu/usr.bin/diff/Makefile +++ b/gnu/usr.bin/diff/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.5 1995/10/29 09:08:32 peter Exp $  PROG=	diff  SRCS=	diff.c analyze.c io.c context.c ed.c normal.c ifdef.c util.c dir.c \  	version.c getopt.c getopt1.c side.c cmpbuf.c diff --git a/gnu/usr.bin/diff/doc/Makefile b/gnu/usr.bin/diff/doc/Makefile index b43a8afbb80c..415985683375 100644 --- a/gnu/usr.bin/diff/doc/Makefile +++ b/gnu/usr.bin/diff/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/29 09:08:35 peter Exp $ +# $Id: Makefile,v 1.1.4.1 1997/04/11 16:58:23 asami Exp $  INFO = diff diff --git a/gnu/usr.bin/gdb/gdb/Makefile b/gnu/usr.bin/gdb/gdb/Makefile index ec0505c19135..c2b6d897690c 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile +++ b/gnu/usr.bin/gdb/gdb/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.13.2.6 1997/05/02 11:26:03 gj Exp $ +#	$Id: Makefile,v 1.13.2.7 1997/10/26 22:47:44 jkh Exp $  PROG = gdb diff --git a/gnu/usr.bin/gdb/gdbreplay/Makefile b/gnu/usr.bin/gdb/gdbreplay/Makefile index a7b6f512a2ef..db2ae0b2c5ab 100644 --- a/gnu/usr.bin/gdb/gdbreplay/Makefile +++ b/gnu/usr.bin/gdb/gdbreplay/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.1.1.1 1997/04/25 22:25:22 pst Exp $ +#	$Id: Makefile,v 1.1.1.1.2.1 1997/04/26 17:34:51 pst Exp $  GDBDIR=	${.CURDIR}/../../../../contrib/gdb  .PATH:	${GDBDIR}/gdb/gdbserver diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile b/gnu/usr.bin/gdb/gdbserver/Makefile index 73abac881616..4e6da9edc766 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile +++ b/gnu/usr.bin/gdb/gdbserver/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.1.1.1 1997/04/25 22:25:50 pst Exp $ +#	$Id: Makefile,v 1.1.1.1.2.1 1997/04/26 17:34:52 pst Exp $  GDBDIR=	${.CURDIR}/../../../../contrib/gdb  .PATH:	${GDBDIR}/gdb/gdbserver diff --git a/gnu/usr.bin/genclass/Makefile b/gnu/usr.bin/genclass/Makefile index 87eb7553cd00..2717b33f6cbf 100644 --- a/gnu/usr.bin/genclass/Makefile +++ b/gnu/usr.bin/genclass/Makefile @@ -1,5 +1,5 @@  # -# $Id: Makefile,v 1.1 1996/10/03 23:00:09 peter Exp $ +# $Id: Makefile,v 1.1.2.1 1998/03/03 07:00:17 jkh Exp $  #  GPPDIR=	${.CURDIR}/../../../contrib/libg++ diff --git a/gnu/usr.bin/gperf/Makefile b/gnu/usr.bin/gperf/Makefile index 55c9e84acba0..d3bb1eaa8852 100644 --- a/gnu/usr.bin/gperf/Makefile +++ b/gnu/usr.bin/gperf/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1996/09/10 14:03:08 peter Exp $  .PATH:	${.CURDIR}/../../../contrib/gperf  .PATH:	${.CURDIR}/../../../contrib/gperf/src diff --git a/gnu/usr.bin/gperf/doc/Makefile b/gnu/usr.bin/gperf/doc/Makefile index 2ca3250fa347..69758e305546 100644 --- a/gnu/usr.bin/gperf/doc/Makefile +++ b/gnu/usr.bin/gperf/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/09/10 14:03:12 peter Exp $ +# $Id: Makefile,v 1.1.2.1 1997/04/11 16:58:27 asami Exp $  INFO = gperf  INFOSECTION= "Programming & development tools." diff --git a/gnu/usr.bin/groff/Makefile b/gnu/usr.bin/groff/Makefile index 8a94ac08963b..8a07e7da4f2e 100644 --- a/gnu/usr.bin/groff/Makefile +++ b/gnu/usr.bin/groff/Makefile @@ -1,6 +1,6 @@  # Makefile for groff  # -# $Id$ +# $Id: Makefile,v 2.1 1996/09/08 01:27:08 pst Exp $  SUBDIR=		libgroff libdriver libbib \  		addftinfo eqn \ diff --git a/gnu/usr.bin/groff/Makefile.cfg b/gnu/usr.bin/groff/Makefile.cfg index f001303da582..44cb5f5d2947 100644 --- a/gnu/usr.bin/groff/Makefile.cfg +++ b/gnu/usr.bin/groff/Makefile.cfg @@ -1,4 +1,4 @@ -#	$Id: Makefile.cfg,v 2.1 1996/09/08 01:27:10 pst Exp $ +#	$Id: Makefile.cfg,v 2.1.2.1 1997/03/08 19:09:01 bde Exp $  BINDIR?=	/usr/bin  SHELL=		/bin/sh diff --git a/gnu/usr.bin/groff/Makefile.dev b/gnu/usr.bin/groff/Makefile.dev index e25ea5f7e57c..0f74cd0ca333 100644 --- a/gnu/usr.bin/groff/Makefile.dev +++ b/gnu/usr.bin/groff/Makefile.dev @@ -2,7 +2,7 @@  # Client Makefiles define DEV and DEVFILES and provide rules for  # individual font files  # -# $Id: Makefile.dev,v 2.2 1996/09/09 18:05:00 phk Exp $ +# $Id: Makefile.dev,v 2.2.2.1 1998/03/03 06:37:06 jkh Exp $  .include "../Makefile.cfg" diff --git a/gnu/usr.bin/groff/devX100-12/Makefile b/gnu/usr.bin/groff/devX100-12/Makefile index a505681cd599..93e5cb3e94a8 100644 --- a/gnu/usr.bin/groff/devX100-12/Makefile +++ b/gnu/usr.bin/groff/devX100-12/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:19 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:13 phk Exp $  #  # Generic groff font makefile  # diff --git a/gnu/usr.bin/groff/devX100/Makefile b/gnu/usr.bin/groff/devX100/Makefile index e322dea81a92..be9a92841814 100644 --- a/gnu/usr.bin/groff/devX100/Makefile +++ b/gnu/usr.bin/groff/devX100/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:17 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:12 phk Exp $  #  # Generic groff font makefile  # diff --git a/gnu/usr.bin/groff/devX75-12/Makefile b/gnu/usr.bin/groff/devX75-12/Makefile index 0a281a3715f0..bde00037590d 100644 --- a/gnu/usr.bin/groff/devX75-12/Makefile +++ b/gnu/usr.bin/groff/devX75-12/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:23 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:15 phk Exp $  #  # Generic groff font makefile  # diff --git a/gnu/usr.bin/groff/devX75/Makefile b/gnu/usr.bin/groff/devX75/Makefile index dab8bfd7c435..64febb8054aa 100644 --- a/gnu/usr.bin/groff/devX75/Makefile +++ b/gnu/usr.bin/groff/devX75/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:21 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:14 phk Exp $  #  # Generic groff font makefile  # diff --git a/gnu/usr.bin/groff/eqn/Makefile b/gnu/usr.bin/groff/eqn/Makefile index 01af75204ae1..15d3ed97feeb 100644 --- a/gnu/usr.bin/groff/eqn/Makefile +++ b/gnu/usr.bin/groff/eqn/Makefile @@ -1,4 +1,4 @@ -#	$Id$ +#	$Id: Makefile,v 1.6.2.2 1998/04/20 15:04:36 bde Exp $  PROG=		eqn  SRCS=		eqn.cc eqn.tab.h main.cc lex.cc \ diff --git a/gnu/usr.bin/groff/libgroff/Makefile b/gnu/usr.bin/groff/libgroff/Makefile index 1061ea68e1e0..7538b4180924 100644 --- a/gnu/usr.bin/groff/libgroff/Makefile +++ b/gnu/usr.bin/groff/libgroff/Makefile @@ -1,6 +1,6 @@  # Makefile for libgroff  # -# $Id$ +# $Id: Makefile,v 1.4 1996/09/08 01:27:42 pst Exp $  #  .include "../Makefile.inc" diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile index 09fc09914051..dff618f42d44 100644 --- a/gnu/usr.bin/groff/tmac/Makefile +++ b/gnu/usr.bin/groff/tmac/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.15 1998/03/21 12:12:55 bde Exp $ +#	$Id: Makefile,v 1.12.2.2 1998/04/19 13:06:43 bde Exp $  .include "../Makefile.inc" diff --git a/gnu/usr.bin/groff/troff/Makefile b/gnu/usr.bin/groff/troff/Makefile index 91f8bef1f5fa..b30dc07422e6 100644 --- a/gnu/usr.bin/groff/troff/Makefile +++ b/gnu/usr.bin/groff/troff/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.9 1997/08/23 05:26:32 jmg Exp $ +#	$Id: Makefile,v 1.8.2.1 1997/08/25 12:54:43 jmg Exp $  PROG=		troff  SRCS=		env.cc node.cc input.cc div.cc symbol.cc dictionary.cc reg.cc \ diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index 14938734c39a..039576bb2182 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -1,5 +1,5 @@  #       @(#)Makefile    5.3 (Berkeley) 5/12/90 -#	$Id: Makefile,v 1.12 1996/08/28 15:45:32 bde Exp $ +#	$Id: Makefile,v 1.12.2.1 1997/06/29 06:05:13 pst Exp $  PROG=	gzip  SRCS=	gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ diff --git a/gnu/usr.bin/gzip/bits.c b/gnu/usr.bin/gzip/bits.c index fae17801fa64..27bff48f71c1 100644 --- a/gnu/usr.bin/gzip/bits.c +++ b/gnu/usr.bin/gzip/bits.c @@ -60,7 +60,7 @@  #endif  #ifdef RCSID -static char rcsid[] = "$Id: bits.c,v 1.3 1993/10/14 00:32:24 nate Exp $"; +static char rcsid[] = "$Id: bits.c,v 1.4 1995/05/30 05:00:30 rgrimes Exp $";  #endif  /* =========================================================================== diff --git a/gnu/usr.bin/gzip/crypt.c b/gnu/usr.bin/gzip/crypt.c index cbce024a01aa..57f62340ecda 100644 --- a/gnu/usr.bin/gzip/crypt.c +++ b/gnu/usr.bin/gzip/crypt.c @@ -2,5 +2,5 @@   * Hardly worth copyrighting :-)   */  #ifdef RCSID -static char rcsid[] = "$Id: crypt.c,v 0.6 1993/03/22 09:48:47 jloup Exp $"; +static char rcsid[] = "$Id: crypt.c,v 1.3 1993/10/14 00:32:26 nate Exp $";  #endif diff --git a/gnu/usr.bin/gzip/deflate.c b/gnu/usr.bin/gzip/deflate.c index 0bc0ed410815..5ed86205973b 100644 --- a/gnu/usr.bin/gzip/deflate.c +++ b/gnu/usr.bin/gzip/deflate.c @@ -68,7 +68,7 @@  #include "lzw.h" /* just for consistency checking */  #ifdef RCSID -static char rcsid[] = "$Id: deflate.c,v 1.3 1993/10/14 00:32:29 nate Exp $"; +static char rcsid[] = "$Id: deflate.c,v 1.4 1995/05/30 05:00:31 rgrimes Exp $";  #endif  /* =========================================================================== diff --git a/gnu/usr.bin/gzip/gzip.c b/gnu/usr.bin/gzip/gzip.c index db28cc66a7c6..2902ab091724 100644 --- a/gnu/usr.bin/gzip/gzip.c +++ b/gnu/usr.bin/gzip/gzip.c @@ -45,7 +45,7 @@ static char  *license_msg[] = {   */  #ifdef RCSID -static char rcsid[] = "$Id: gzip.c,v 1.4.6.1 1997/12/29 23:29:12 wosch Exp $"; +static char rcsid[] = "$Id: gzip.c,v 1.4.6.2 1998/02/15 15:34:18 jkh Exp $";  #endif  #include <ctype.h> diff --git a/gnu/usr.bin/gzip/inflate.c b/gnu/usr.bin/gzip/inflate.c index 170e6af5ee5a..ec4c1ace5ec5 100644 --- a/gnu/usr.bin/gzip/inflate.c +++ b/gnu/usr.bin/gzip/inflate.c @@ -97,7 +97,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: inflate.c,v 1.4 1995/05/30 05:00:37 rgrimes Exp $"; +static char rcsid[] = "$Id: inflate.c,v 1.4.6.1 1997/12/29 23:29:14 wosch Exp $";  #endif  #include <sys/types.h> diff --git a/gnu/usr.bin/gzip/lzw.c b/gnu/usr.bin/gzip/lzw.c index 12bf5c611d0c..92b3ce4c5515 100644 --- a/gnu/usr.bin/gzip/lzw.c +++ b/gnu/usr.bin/gzip/lzw.c @@ -3,7 +3,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: lzw.c,v 0.9 1993/06/10 13:27:31 jloup Exp $"; +static char rcsid[] = "$Id: lzw.c,v 1.3 1993/10/14 00:32:59 nate Exp $";  #endif  #include "tailor.h" diff --git a/gnu/usr.bin/gzip/match.S b/gnu/usr.bin/gzip/match.S index 4a3d681c3d2b..6ff362308203 100644 --- a/gnu/usr.bin/gzip/match.S +++ b/gnu/usr.bin/gzip/match.S @@ -9,7 +9,7 @@   * Kristoffer Eriksson <ske@pkmab.se>   */ -/* $Id: match.S,v 0.14 1993/06/11 18:33:24 jloup Exp $ */ +/* $Id: match.S,v 1.3 1993/10/14 00:33:02 nate Exp $ */  /* Preprocess with -DNO_UNDERLINE if your C compiler does not prefix   * external symbols with an underline character '_'. diff --git a/gnu/usr.bin/gzip/revision.h b/gnu/usr.bin/gzip/revision.h index f99b65f9bbd2..4e5362fb2c6f 100644 --- a/gnu/usr.bin/gzip/revision.h +++ b/gnu/usr.bin/gzip/revision.h @@ -13,4 +13,4 @@  #  undef LZW  #endif -/* $Id: revision.h,v 0.25 1993/06/24 08:29:52 jloup Exp $ */ +/* $Id: revision.h,v 1.3 1993/10/14 00:33:05 nate Exp $ */ diff --git a/gnu/usr.bin/gzip/tailor.h b/gnu/usr.bin/gzip/tailor.h index 840733ab50e2..a3e632168035 100644 --- a/gnu/usr.bin/gzip/tailor.h +++ b/gnu/usr.bin/gzip/tailor.h @@ -8,7 +8,7 @@   * The target dependent functions should be defined in tailor.c.   */ -/* $Id: tailor.h,v 1.3 1993/10/14 00:33:08 nate Exp $ */ +/* $Id: tailor.h,v 1.4 1995/05/30 05:00:38 rgrimes Exp $ */  #if defined(__MSDOS__) && !defined(MSDOS)  #  define MSDOS diff --git a/gnu/usr.bin/gzip/trees.c b/gnu/usr.bin/gzip/trees.c index edb567cd8a5b..cc6e9f12d602 100644 --- a/gnu/usr.bin/gzip/trees.c +++ b/gnu/usr.bin/gzip/trees.c @@ -59,7 +59,7 @@  #include "gzip.h"  #ifdef RCSID -static char rcsid[] = "$Id: trees.c,v 1.4 1995/05/30 05:00:40 rgrimes Exp $"; +static char rcsid[] = "$Id: trees.c,v 1.4.6.1 1998/02/15 15:34:19 jkh Exp $";  #endif  /* =========================================================================== diff --git a/gnu/usr.bin/gzip/unlzh.c b/gnu/usr.bin/gzip/unlzh.c index e318e5ed9418..f8d7989588d6 100644 --- a/gnu/usr.bin/gzip/unlzh.c +++ b/gnu/usr.bin/gzip/unlzh.c @@ -4,7 +4,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: unlzh.c,v 1.2 1993/06/24 10:59:01 jloup Exp $"; +static char rcsid[] = "$Id: unlzh.c,v 1.2 1993/10/14 00:33:14 nate Exp $";  #endif  #include <stdio.h> diff --git a/gnu/usr.bin/gzip/unlzw.c b/gnu/usr.bin/gzip/unlzw.c index fe2110fc347a..d873fb0323cc 100644 --- a/gnu/usr.bin/gzip/unlzw.c +++ b/gnu/usr.bin/gzip/unlzw.c @@ -8,7 +8,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: unlzw.c,v 1.3 1993/10/14 00:33:17 nate Exp $"; +static char rcsid[] = "$Id: unlzw.c,v 1.4 1995/05/30 05:00:41 rgrimes Exp $";  #endif  #include <sys/types.h> diff --git a/gnu/usr.bin/gzip/unpack.c b/gnu/usr.bin/gzip/unpack.c index a00fdaefc6b2..447052de75dc 100644 --- a/gnu/usr.bin/gzip/unpack.c +++ b/gnu/usr.bin/gzip/unpack.c @@ -5,7 +5,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: unpack.c,v 1.4 1993/06/11 19:25:36 jloup Exp $"; +static char rcsid[] = "$Id: unpack.c,v 1.3 1993/10/14 00:33:20 nate Exp $";  #endif  #include "tailor.h" diff --git a/gnu/usr.bin/gzip/unzip.c b/gnu/usr.bin/gzip/unzip.c index 7e287a157ad3..eda8046986c3 100644 --- a/gnu/usr.bin/gzip/unzip.c +++ b/gnu/usr.bin/gzip/unzip.c @@ -14,7 +14,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: unzip.c,v 0.13 1993/06/10 13:29:00 jloup Exp $"; +static char rcsid[] = "$Id: unzip.c,v 1.3 1993/10/14 00:33:24 nate Exp $";  #endif  #include "tailor.h" diff --git a/gnu/usr.bin/gzip/util.c b/gnu/usr.bin/gzip/util.c index 426f94159609..acd00b626b6b 100644 --- a/gnu/usr.bin/gzip/util.c +++ b/gnu/usr.bin/gzip/util.c @@ -5,7 +5,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: util.c,v 1.4 1995/05/30 05:00:43 rgrimes Exp $"; +static char rcsid[] = "$Id: util.c,v 1.4.6.1 1998/02/15 15:34:20 jkh Exp $";  #endif  #include <ctype.h> diff --git a/gnu/usr.bin/gzip/zgrep.getopt b/gnu/usr.bin/gzip/zgrep.getopt index b1daff814f10..19e245a5e60e 100644 --- a/gnu/usr.bin/gzip/zgrep.getopt +++ b/gnu/usr.bin/gzip/zgrep.getopt @@ -26,7 +26,7 @@  #  # zgrep - search possibly compressed files for a regular expression  # -# $Id: zgrep.getopt,v 1.6 1997/12/07 01:00:56 wosch Exp $ +# $Id: zgrep.getopt,v 1.2.2.2 1997/12/08 19:27:41 wosch Exp $  PATH=/bin:/usr/bin:$PATH; export PATH diff --git a/gnu/usr.bin/gzip/zip.c b/gnu/usr.bin/gzip/zip.c index 507d1616efdd..67de7c97c5f1 100644 --- a/gnu/usr.bin/gzip/zip.c +++ b/gnu/usr.bin/gzip/zip.c @@ -5,7 +5,7 @@   */  #ifdef RCSID -static char rcsid[] = "$Id: zip.c,v 0.17 1993/06/10 13:29:25 jloup Exp $"; +static char rcsid[] = "$Id: zip.c,v 1.3 1993/10/14 00:33:32 nate Exp $";  #endif  #include <ctype.h> diff --git a/gnu/usr.bin/ld/Makefile b/gnu/usr.bin/ld/Makefile index d64cc19bd6a9..bbf65140fcc5 100644 --- a/gnu/usr.bin/ld/Makefile +++ b/gnu/usr.bin/ld/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.22 1997/06/29 21:36:33 bde Exp $ +# $Id: Makefile,v 1.18.2.1 1997/08/08 02:17:57 jdp Exp $  #  PROG=	ld diff --git a/gnu/usr.bin/ld/PORTING b/gnu/usr.bin/ld/PORTING index 017f6d77095e..bb368e2cdbec 100644 --- a/gnu/usr.bin/ld/PORTING +++ b/gnu/usr.bin/ld/PORTING @@ -1,4 +1,4 @@ -$Id: PORTING,v 1.1 1994/12/23 22:56:08 nate Exp $ +$Id: PORTING,v 1.2 1996/10/01 01:22:14 peter Exp $  This document describes some of the machine dependent parts in ld(1) and rtld(?)  Most of the machine dependencies are a result of different ways in which diff --git a/gnu/usr.bin/ld/dynamic.h b/gnu/usr.bin/ld/dynamic.h index 56d53bb0327d..a5b3b7b56854 100644 --- a/gnu/usr.bin/ld/dynamic.h +++ b/gnu/usr.bin/ld/dynamic.h @@ -27,7 +27,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: dynamic.h,v 1.4 1997/05/13 10:23:46 dfr Exp $ + *	$Id: dynamic.h,v 1.1.2.1 1997/08/08 02:17:58 jdp Exp $   */  #ifndef __DYNAMIC_H__ diff --git a/gnu/usr.bin/ld/i386/md-static-funcs.c b/gnu/usr.bin/ld/i386/md-static-funcs.c index 8a672ed9db87..e9ef86675f28 100644 --- a/gnu/usr.bin/ld/i386/md-static-funcs.c +++ b/gnu/usr.bin/ld/i386/md-static-funcs.c @@ -1,5 +1,5 @@  /* - *	$Id: md-static-funcs.c,v 1.3 1995/11/02 18:47:55 nate Exp $ + *	$Id: md-static-funcs.c,v 1.4 1996/10/01 01:27:54 peter Exp $   *   * Called by ld.so when onanating.   * This *must* be a static function, so it is not called through a jmpslot. diff --git a/gnu/usr.bin/ld/i386/md.c b/gnu/usr.bin/ld/i386/md.c index 4798f7c39b42..c52c3776a1d0 100644 --- a/gnu/usr.bin/ld/i386/md.c +++ b/gnu/usr.bin/ld/i386/md.c @@ -27,7 +27,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: md.c,v 1.16 1997/02/22 15:46:33 peter Exp $ + *	$Id: md.c,v 1.13.2.1 1997/08/08 02:18:05 jdp Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/i386/md.h b/gnu/usr.bin/ld/i386/md.h index 879d4c810b1a..4e69cc85af24 100644 --- a/gnu/usr.bin/ld/i386/md.h +++ b/gnu/usr.bin/ld/i386/md.h @@ -27,7 +27,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: md.h,v 1.17 1997/04/30 05:18:08 jdp Exp $ + *	$Id: md.h,v 1.13.2.1 1997/08/08 02:18:05 jdp Exp $   */  #ifndef __MD_H__ diff --git a/gnu/usr.bin/ld/i386/mdprologue.S b/gnu/usr.bin/ld/i386/mdprologue.S index 1de0f7200f1a..79bf4dadd486 100644 --- a/gnu/usr.bin/ld/i386/mdprologue.S +++ b/gnu/usr.bin/ld/i386/mdprologue.S @@ -27,7 +27,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: mdprologue.S,v 1.7 1994/12/04 07:42:44 mycroft Exp $ + *	$Id: mdprologue.S,v 1.6 1995/03/04 17:46:22 nate Exp $   */  /* diff --git a/gnu/usr.bin/ld/ld.1 b/gnu/usr.bin/ld/ld.1 index 3268aabc3305..5a00a4314b6e 100644 --- a/gnu/usr.bin/ld/ld.1 +++ b/gnu/usr.bin/ld/ld.1 @@ -27,7 +27,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: ld.1,v 1.12.2.2 1997/08/08 02:17:59 jdp Exp $ +.\"	$Id: ld.1,v 1.12.2.3 1998/03/03 07:00:18 jkh Exp $  .\"  .Dd October 14, 1993  .Dt LD 1 diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c index c3d5a741361e..859e31bfe1a1 100644 --- a/gnu/usr.bin/ld/ld.c +++ b/gnu/usr.bin/ld/ld.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)ld.c	6.10 (Berkeley) 5/22/91";     Set, indirect, and warning symbol features added by Randy Smith. */  /* - *	$Id: ld.c,v 1.45 1997/05/13 10:23:46 dfr Exp $ + *	$Id: ld.c,v 1.36.2.2 1997/08/08 02:18:00 jdp Exp $   */  /* Define how to initialize system-dependent header fields.  */ diff --git a/gnu/usr.bin/ld/ld.h b/gnu/usr.bin/ld/ld.h index f8cd02ebbb4b..74be82eca410 100644 --- a/gnu/usr.bin/ld/ld.h +++ b/gnu/usr.bin/ld/ld.h @@ -1,5 +1,5 @@  /* - *	$Id: ld.h,v 1.20 1997/02/22 15:46:21 peter Exp $ + *	$Id: ld.h,v 1.17.2.1 1997/08/08 02:18:01 jdp Exp $   */  /*-   * This code is derived from software copyrighted by the Free Software diff --git a/gnu/usr.bin/ld/ldconfig/Makefile b/gnu/usr.bin/ld/ldconfig/Makefile index a9708c127f4d..d7c3a6b0e12b 100644 --- a/gnu/usr.bin/ld/ldconfig/Makefile +++ b/gnu/usr.bin/ld/ldconfig/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.11 1997/06/29 21:40:54 bde Exp $ +#	$Id: Makefile,v 1.8.2.1 1997/08/08 02:18:06 jdp Exp $  PROG=	ldconfig  SRCS=	ldconfig.c shlib.c support.c diff --git a/gnu/usr.bin/ld/ldconfig/ldconfig.8 b/gnu/usr.bin/ld/ldconfig/ldconfig.8 index dda7ce5d0c8f..9913252bc2d3 100644 --- a/gnu/usr.bin/ld/ldconfig/ldconfig.8 +++ b/gnu/usr.bin/ld/ldconfig/ldconfig.8 @@ -27,7 +27,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: ldconfig.8,v 1.9.2.3 1997/12/25 07:57:42 jkh Exp $ +.\"	$Id: ldconfig.8,v 1.9.2.4 1998/03/03 07:00:19 jkh Exp $  .\"  .Dd October 3, 1993  .Dt LDCONFIG 8 diff --git a/gnu/usr.bin/ld/ldconfig/ldconfig.c b/gnu/usr.bin/ld/ldconfig/ldconfig.c index f4238f5c106b..1f4942bd540f 100644 --- a/gnu/usr.bin/ld/ldconfig/ldconfig.c +++ b/gnu/usr.bin/ld/ldconfig/ldconfig.c @@ -27,7 +27,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: ldconfig.c,v 1.15.2.2 1997/08/08 02:18:10 jdp Exp $ + *	$Id: ldconfig.c,v 1.15.2.3 1997/12/25 07:57:43 jkh Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/ldd/Makefile b/gnu/usr.bin/ld/ldd/Makefile index e321839a842d..a6dd8c596bb1 100644 --- a/gnu/usr.bin/ld/ldd/Makefile +++ b/gnu/usr.bin/ld/ldd/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.4 1996/10/01 02:16:12 peter Exp $ +#	$Id: Makefile,v 1.4.2.1 1998/03/03 07:00:20 jkh Exp $  PROG=		ldd  SRCS=		ldd.c sods.c diff --git a/gnu/usr.bin/ld/ldd/ldd.c b/gnu/usr.bin/ld/ldd/ldd.c index ae3d377a8264..ce5dd9596ac7 100644 --- a/gnu/usr.bin/ld/ldd/ldd.c +++ b/gnu/usr.bin/ld/ldd/ldd.c @@ -27,7 +27,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: ldd.c,v 1.13 1997/02/22 15:46:43 peter Exp $ + *	$Id: ldd.c,v 1.8.2.3 1997/08/08 02:18:11 jdp Exp $   */  #include <sys/types.h> diff --git a/gnu/usr.bin/ld/ldd/sods.c b/gnu/usr.bin/ld/ldd/sods.c index d9555a3e245a..bafb466b10d1 100644 --- a/gnu/usr.bin/ld/ldd/sods.c +++ b/gnu/usr.bin/ld/ldd/sods.c @@ -22,7 +22,7 @@   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * SUCH DAMAGE.   * - * $Id: sods.c,v 1.1.2.1 1997/08/08 02:18:12 jdp Exp $ + * $Id: sods.c,v 1.1.2.2 1998/01/10 20:46:17 jdp Exp $   */  #include <assert.h> diff --git a/gnu/usr.bin/ld/lib.c b/gnu/usr.bin/ld/lib.c index e05b3c14e162..6fc904a5d5a9 100644 --- a/gnu/usr.bin/ld/lib.c +++ b/gnu/usr.bin/ld/lib.c @@ -30,7 +30,7 @@     Set, indirect, and warning symbol features added by Randy Smith. */  /* - * $Id: lib.c,v 1.21 1997/02/22 15:46:22 peter Exp $	- library routines + * $Id: lib.c,v 1.18.2.1 1997/08/08 02:18:02 jdp Exp $	- library routines   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rrs.c b/gnu/usr.bin/ld/rrs.c index f15cdaab923f..aebd9449236a 100644 --- a/gnu/usr.bin/ld/rrs.c +++ b/gnu/usr.bin/ld/rrs.c @@ -27,7 +27,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: rrs.c,v 1.22 1997/05/13 10:23:47 dfr Exp $ + *	$Id: rrs.c,v 1.17.2.1 1997/08/08 02:18:02 jdp Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rtld/Makefile b/gnu/usr.bin/ld/rtld/Makefile index 182afd7fb369..43fd3ecde0ed 100644 --- a/gnu/usr.bin/ld/rtld/Makefile +++ b/gnu/usr.bin/ld/rtld/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.21 1996/10/01 01:51:40 peter Exp $ +#	$Id: Makefile,v 1.21.2.1 1997/05/08 07:11:32 asami Exp $  PROG=	ld.so  SRCS=	mdprologue.S rtld.c malloc.c shlib.c md.c support.c sbrk.c diff --git a/gnu/usr.bin/ld/rtld/malloc.c b/gnu/usr.bin/ld/rtld/malloc.c index 938e9a789814..8a78b095e132 100644 --- a/gnu/usr.bin/ld/rtld/malloc.c +++ b/gnu/usr.bin/ld/rtld/malloc.c @@ -33,7 +33,7 @@  #if defined(LIBC_SCCS) && !defined(lint)  /*static char *sccsid = "from: @(#)malloc.c	5.11 (Berkeley) 2/23/91";*/ -static char *rcsid = "$Id: malloc.c,v 1.8 1997/06/22 17:48:35 phk Exp $"; +static char *rcsid = "$Id: malloc.c,v 1.5.2.1 1997/08/08 02:18:13 jdp Exp $";  #endif /* LIBC_SCCS and not lint */  /* diff --git a/gnu/usr.bin/ld/rtld/rtld.1 b/gnu/usr.bin/ld/rtld/rtld.1 index 5a36c539c91d..efd373449755 100644 --- a/gnu/usr.bin/ld/rtld/rtld.1 +++ b/gnu/usr.bin/ld/rtld/rtld.1 @@ -1,4 +1,4 @@ -.\"	$Id: rtld.1,v 1.6.2.2 1997/08/08 02:18:13 jdp Exp $ +.\"	$Id: rtld.1,v 1.6.2.3 1997/12/25 09:35:56 hoek Exp $  .\"  .\" Copyright (c) 1995 Paul Kranenburg  .\" All rights reserved. diff --git a/gnu/usr.bin/ld/rtld/rtld.c b/gnu/usr.bin/ld/rtld/rtld.c index 89b09a3e4084..5070467ae8a7 100644 --- a/gnu/usr.bin/ld/rtld/rtld.c +++ b/gnu/usr.bin/ld/rtld/rtld.c @@ -27,7 +27,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: rtld.c,v 1.40.2.4 1997/09/02 14:18:52 nate Exp $ + *	$Id: rtld.c,v 1.40.2.5 1998/04/19 23:01:27 jdp Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rtld/sbrk.c b/gnu/usr.bin/ld/rtld/sbrk.c index f99fb6404399..c5f5a1db6438 100644 --- a/gnu/usr.bin/ld/rtld/sbrk.c +++ b/gnu/usr.bin/ld/rtld/sbrk.c @@ -27,7 +27,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: sbrk.c,v 1.1 1993/12/11 21:06:36 jkh Exp $ + *	$Id: sbrk.c,v 1.2 1996/10/01 01:52:03 peter Exp $   */  #include <machine/vmparam.h> diff --git a/gnu/usr.bin/ld/shlib.c b/gnu/usr.bin/ld/shlib.c index 44e30f0b75ea..2a26b6aa894c 100644 --- a/gnu/usr.bin/ld/shlib.c +++ b/gnu/usr.bin/ld/shlib.c @@ -27,7 +27,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: shlib.c,v 1.15 1996/04/20 18:27:56 jdp Exp $ + *	$Id: shlib.c,v 1.16 1996/10/01 01:22:38 peter Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/shlib.h b/gnu/usr.bin/ld/shlib.h index 796d37e7636c..f09ed8c4aece 100644 --- a/gnu/usr.bin/ld/shlib.h +++ b/gnu/usr.bin/ld/shlib.h @@ -23,7 +23,7 @@   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * SUCH DAMAGE.   *- - * $Id$ + * $Id: shlib.h,v 1.1 1996/10/01 01:22:40 peter Exp $   */  /* diff --git a/gnu/usr.bin/ld/sparc/md-static-funcs.c b/gnu/usr.bin/ld/sparc/md-static-funcs.c index 2672cb596be6..8446daa5256c 100644 --- a/gnu/usr.bin/ld/sparc/md-static-funcs.c +++ b/gnu/usr.bin/ld/sparc/md-static-funcs.c @@ -1,6 +1,6 @@  /* - *	$Id: md-static-funcs.c,v 1.2 1993/12/08 10:28:56 pk Exp $ + *	$Id: md-static-funcs.c,v 1.2 1993/12/11 12:02:08 jkh Exp $   *   * Simple SPARC relocations for the benefit of self-relocation of ld.so   * avoiding the use of global variables (ie. reloc_bitshift[] et. al.). diff --git a/gnu/usr.bin/ld/sparc/md.c b/gnu/usr.bin/ld/sparc/md.c index 68831a6054f9..6abab408502c 100644 --- a/gnu/usr.bin/ld/sparc/md.c +++ b/gnu/usr.bin/ld/sparc/md.c @@ -27,7 +27,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: md.c,v 1.8 1994/06/15 22:41:19 rich Exp $ + *	$Id: md.c,v 1.9 1996/10/01 01:28:06 peter Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/sparc/md.h b/gnu/usr.bin/ld/sparc/md.h index 421cbd6c7d3d..0dc427a08c30 100644 --- a/gnu/usr.bin/ld/sparc/md.h +++ b/gnu/usr.bin/ld/sparc/md.h @@ -27,7 +27,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: md.h,v 1.7 1995/03/04 17:46:25 nate Exp $ + *	$Id: md.h,v 1.8 1996/10/01 01:28:10 peter Exp $   */  /* diff --git a/gnu/usr.bin/ld/sparc/mdprologue.S b/gnu/usr.bin/ld/sparc/mdprologue.S index d3236a386671..6a0ec5cc810b 100644 --- a/gnu/usr.bin/ld/sparc/mdprologue.S +++ b/gnu/usr.bin/ld/sparc/mdprologue.S @@ -27,7 +27,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: mdprologue.S,v 1.3 1994/02/13 20:43:13 jkh Exp $ + *	$Id: mdprologue.S,v 1.4 1995/03/04 17:46:26 nate Exp $   */  /* diff --git a/gnu/usr.bin/ld/support.c b/gnu/usr.bin/ld/support.c index 128f0b6ef4a8..1c5473cad02d 100644 --- a/gnu/usr.bin/ld/support.c +++ b/gnu/usr.bin/ld/support.c @@ -28,7 +28,7 @@   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * SUCH DAMAGE.   *- - * $Id: support.c,v 1.1 1996/10/01 01:22:42 peter Exp $ + * $Id: support.c,v 1.1.2.1 1997/02/03 00:50:35 jdp Exp $   */  #include <sys/types.h>  #include <string.h> diff --git a/gnu/usr.bin/ld/support.h b/gnu/usr.bin/ld/support.h index 5be1e31c19d9..7911fa21bbd3 100644 --- a/gnu/usr.bin/ld/support.h +++ b/gnu/usr.bin/ld/support.h @@ -23,7 +23,7 @@   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * SUCH DAMAGE.   *- - * $Id$ + * $Id: support.h,v 1.1 1996/10/01 01:22:44 peter Exp $   */  /* diff --git a/gnu/usr.bin/ld/symbol.c b/gnu/usr.bin/ld/symbol.c index 10738705569c..fa875da6a2db 100644 --- a/gnu/usr.bin/ld/symbol.c +++ b/gnu/usr.bin/ld/symbol.c @@ -31,7 +31,7 @@  /*   * symbol table routines - * $Id: symbol.c,v 1.6 1994/12/23 22:30:54 nate Exp $ + * $Id: symbol.c,v 1.7 1996/10/01 01:22:45 peter Exp $   */  /* Create the symbol table entries for `etext', `edata' and `end'.  */ diff --git a/gnu/usr.bin/ld/symseg.h b/gnu/usr.bin/ld/symseg.h index 112dd6f0a7f5..0b9a58476bd5 100644 --- a/gnu/usr.bin/ld/symseg.h +++ b/gnu/usr.bin/ld/symseg.h @@ -4,7 +4,7 @@   * Foundation.   *   *	from: @(#)symseg.h	5.4 (Berkeley) 4/30/91 - *	$Id: symseg.h,v 1.3 1993/11/09 04:19:05 paul Exp $ + *	$Id: symseg.h,v 1.4 1995/05/30 05:01:47 rgrimes Exp $   */  /* GDB symbol table format definitions. diff --git a/gnu/usr.bin/ld/warnings.c b/gnu/usr.bin/ld/warnings.c index 9bf8b1698803..ebce857be1a6 100644 --- a/gnu/usr.bin/ld/warnings.c +++ b/gnu/usr.bin/ld/warnings.c @@ -30,7 +30,7 @@     Set, indirect, and warning symbol features added by Randy Smith. */  /* - * $Id: warnings.c,v 1.15 1997/02/22 15:46:27 peter Exp $ + * $Id: warnings.c,v 1.12.2.1 1997/08/08 02:18:03 jdp Exp $   */  #include <sys/param.h> diff --git a/gnu/usr.bin/ld/xbits.c b/gnu/usr.bin/ld/xbits.c index edcb16af843c..6fd922aa012b 100644 --- a/gnu/usr.bin/ld/xbits.c +++ b/gnu/usr.bin/ld/xbits.c @@ -27,7 +27,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: xbits.c,v 1.3 1994/02/13 20:41:50 jkh Exp $ + *	$Id: xbits.c,v 1.4 1996/10/01 01:22:51 peter Exp $   */  /* diff --git a/gnu/usr.bin/man/Makefile.shprog b/gnu/usr.bin/man/Makefile.shprog index 665a194917ff..f329a8cfe881 100644 --- a/gnu/usr.bin/man/Makefile.shprog +++ b/gnu/usr.bin/man/Makefile.shprog @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile.shprog,v 1.1 1995/10/21 14:27:04 bde Exp $  # This may become bsd.shprog.mk.  The general version would have to handle:  # - arbitrary sed substitutions. diff --git a/gnu/usr.bin/man/apropos/Makefile b/gnu/usr.bin/man/apropos/Makefile index c109d3c04391..4ecc857ce4d1 100644 --- a/gnu/usr.bin/man/apropos/Makefile +++ b/gnu/usr.bin/man/apropos/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/03/09 17:31:08 wosch Exp wosch $ +# $Id: Makefile,v 1.11 1996/03/10 18:52:05 wosch Exp $  SHPROG=	apropos diff --git a/gnu/usr.bin/man/apropos/apropos.sh b/gnu/usr.bin/man/apropos/apropos.sh index f726f1fb8b31..a1b1d0d397b4 100644 --- a/gnu/usr.bin/man/apropos/apropos.sh +++ b/gnu/usr.bin/man/apropos/apropos.sh @@ -15,7 +15,7 @@  # The University of Texas at Austin  # Austin, Texas  78712  # -# $Id: apropos.sh,v 1.6 1996/09/14 23:20:33 wosch Exp $ +# $Id: apropos.sh,v 1.7 1996/09/27 17:36:50 wosch Exp $  PATH=/bin:/usr/bin:$PATH diff --git a/gnu/usr.bin/man/catman/catman.1 b/gnu/usr.bin/man/catman/catman.1 index 84726a2786ea..319c84d13f67 100644 --- a/gnu/usr.bin/man/catman/catman.1 +++ b/gnu/usr.bin/man/catman/catman.1 @@ -24,7 +24,7 @@  .\"  .\" /usr/bin/catman - preformat man pages  .\" -.\" $Id: catman.1,v 1.8.2.1 1996/12/10 17:23:05 joerg Exp $ +.\" $Id: catman.1,v 1.8.2.2 1998/02/15 16:05:21 jkh Exp $  .Dd Mar 12, 1995  .Dt CATMAN 1  .Os diff --git a/gnu/usr.bin/man/catman/catman.perl b/gnu/usr.bin/man/catman/catman.perl index 38ff65e17de5..1577be4e9939 100644 --- a/gnu/usr.bin/man/catman/catman.perl +++ b/gnu/usr.bin/man/catman/catman.perl @@ -26,7 +26,7 @@  #  # /usr/bin/catman - preformat man pages  # -# $Id: catman.perl,v 1.8 1996/08/27 20:04:01 wosch Exp $ +# $Id: catman.perl,v 1.8.2.1 1998/05/01 13:30:14 des Exp $  sub usage { diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.1 b/gnu/usr.bin/man/makewhatis/makewhatis.1 index aa55f94d34cc..647c2f9d5a0b 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.1 +++ b/gnu/usr.bin/man/makewhatis/makewhatis.1 @@ -22,7 +22,7 @@  .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  .\" SUCH DAMAGE.  .\" -.\" $Id: makewhatis.1,v 1.8 1996/12/14 23:27:20 mpp Exp $ +.\" $Id: makewhatis.1,v 1.6.2.2 1996/12/22 23:05:27 mpp Exp $  .Dd Jan, 12, 1995  .Dt MAKEWHATIS 1  .Os FreeBSD 2.1 diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.local.8 b/gnu/usr.bin/man/makewhatis/makewhatis.local.8 index 932d31d27765..7bdc721d40db 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.local.8 +++ b/gnu/usr.bin/man/makewhatis/makewhatis.local.8 @@ -22,7 +22,7 @@  .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  .\" SUCH DAMAGE.  .\" -.\" $Id: makewhatis.local.8,v 1.3 1996/12/09 07:26:04 mpp Exp $ +.\" $Id: makewhatis.local.8,v 1.2.2.1 1996/12/10 17:23:18 joerg Exp $  .Dd April, 26, 1996  .Dt MAKEWHATIS.LOCAL 8  .Os FreeBSD 2.2 diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.local.sh b/gnu/usr.bin/man/makewhatis/makewhatis.local.sh index 9203cfb839c9..d5a340cfe096 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.local.sh +++ b/gnu/usr.bin/man/makewhatis/makewhatis.local.sh @@ -33,7 +33,7 @@  #  # PS: this wrapper works also for catman(1)  # -# $Id: makewhatis.local.sh,v 1.2 1996/05/22 00:57:40 wosch Exp $ +# $Id: makewhatis.local.sh,v 1.3 1996/08/27 20:04:07 wosch Exp $  PATH=/bin:/usr/bin:$PATH; export PATH  opt= dirs= localdirs= diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.perl b/gnu/usr.bin/man/makewhatis/makewhatis.perl index 20e9be436509..73a99cf09a76 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.perl +++ b/gnu/usr.bin/man/makewhatis/makewhatis.perl @@ -26,7 +26,7 @@  #  # makewhatis -- update the whatis database in the man directories.  # -# $Id: makewhatis.perl,v 1.11 1996/08/27 20:04:09 wosch Exp $ +# $Id: makewhatis.perl,v 1.11.2.1 1998/02/15 16:05:25 jkh Exp $  sub usage { diff --git a/gnu/usr.bin/patch/EXTERN.h b/gnu/usr.bin/patch/EXTERN.h index 96dd888a933d..bde49f4be63c 100644 --- a/gnu/usr.bin/patch/EXTERN.h +++ b/gnu/usr.bin/patch/EXTERN.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/EXTERN.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/EXTERN.h,v 1.2 1995/05/30 05:02:26 rgrimes Exp $   *   * $Log: EXTERN.h,v $ + * Revision 1.2  1995/05/30 05:02:26  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1993/06/19  14:21:52  paul   * b-maked patch-2.10   * diff --git a/gnu/usr.bin/patch/INTERN.h b/gnu/usr.bin/patch/INTERN.h index b718b1d4cc9f..5f3beab6236c 100644 --- a/gnu/usr.bin/patch/INTERN.h +++ b/gnu/usr.bin/patch/INTERN.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/INTERN.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/INTERN.h,v 1.2 1995/05/30 05:02:27 rgrimes Exp $   *   * $Log: INTERN.h,v $ + * Revision 1.2  1995/05/30 05:02:27  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1993/06/19  14:21:52  paul   * b-maked patch-2.10   * diff --git a/gnu/usr.bin/patch/common.h b/gnu/usr.bin/patch/common.h index 4bb99e024819..e58f3f2f2cb9 100644 --- a/gnu/usr.bin/patch/common.h +++ b/gnu/usr.bin/patch/common.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/common.h,v 1.2 1993/09/22 16:51:03 rich Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/common.h,v 1.3 1995/05/30 05:02:30 rgrimes Exp $   *   * $Log: common.h,v $ + * Revision 1.3  1995/05/30 05:02:30  rgrimes + * Remove trailing whitespace. + *   * Revision 1.2  1993/09/22  16:51:03  rich   * Increaed the fixed static buffer sizes and maximum hunk size that   * otherwise causes the XFree86 1.3 patch set to fail. diff --git a/gnu/usr.bin/patch/inp.c b/gnu/usr.bin/patch/inp.c index f1a7e7932fbd..38f768418968 100644 --- a/gnu/usr.bin/patch/inp.c +++ b/gnu/usr.bin/patch/inp.c @@ -1,4 +1,4 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.c,v 1.3.6.1 1997/03/17 22:32:26 jmg Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.c,v 1.3.6.2 1998/03/03 07:13:40 jkh Exp $   *   * Log: inp.c,v   * diff --git a/gnu/usr.bin/patch/inp.h b/gnu/usr.bin/patch/inp.h index ea07ee89d8a1..40999d5c897c 100644 --- a/gnu/usr.bin/patch/inp.h +++ b/gnu/usr.bin/patch/inp.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.h,v 1.2 1995/05/30 05:02:33 rgrimes Exp $   *   * $Log: inp.h,v $ + * Revision 1.2  1995/05/30 05:02:33  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1993/06/19  14:21:52  paul   * b-maked patch-2.10   * diff --git a/gnu/usr.bin/patch/patch.1 b/gnu/usr.bin/patch/patch.1 index a4702dcf7a12..b66d50a6a42f 100644 --- a/gnu/usr.bin/patch/patch.1 +++ b/gnu/usr.bin/patch/patch.1 @@ -1,8 +1,11 @@  .\" -*- nroff -*-  .rn '' }` -'\" $Header: /home/ncvs/src/gnu/usr.bin/patch/patch.1,v 1.9 1998/01/22 07:44:03 ache Exp $ +'\" $Header: /home/ncvs/src/gnu/usr.bin/patch/patch.1,v 1.5.2.3 1998/01/22 07:45:53 ache Exp $  '\"   '\" $Log: patch.1,v $ +'\" Revision 1.5.2.3  1998/01/22 07:45:53  ache +'\" MFC: PATCH_INDEX_FIRST environment variable +'\"  '\" Revision 1.9  1998/01/22 07:44:03  ache  '\" Add PATCH_INDEX_FIRST environment variable to do the same as -I option  '\" diff --git a/gnu/usr.bin/patch/patch.c b/gnu/usr.bin/patch/patch.c index 5b824cd44271..98dc464cda15 100644 --- a/gnu/usr.bin/patch/patch.c +++ b/gnu/usr.bin/patch/patch.c @@ -1,5 +1,5 @@  char rcsid[] = -	"$Header: /home/ncvs/src/gnu/usr.bin/patch/patch.c,v 1.14 1998/01/22 07:44:04 ache Exp $"; +	"$Header: /home/ncvs/src/gnu/usr.bin/patch/patch.c,v 1.6.6.3 1998/01/22 07:45:54 ache Exp $";  /* patch - a program to apply diffs to original files   * @@ -9,6 +9,9 @@ char rcsid[] =   * money off of it, or pretend that you wrote it.   *   * $Log: patch.c,v $ + * Revision 1.6.6.3  1998/01/22 07:45:54  ache + * MFC: PATCH_INDEX_FIRST environment variable + *   * Revision 1.14  1998/01/22 07:44:04  ache   * Add PATCH_INDEX_FIRST environment variable to do the same as -I option   * diff --git a/gnu/usr.bin/patch/pch.c b/gnu/usr.bin/patch/pch.c index 9bf2d507c911..0372b245605d 100644 --- a/gnu/usr.bin/patch/pch.c +++ b/gnu/usr.bin/patch/pch.c @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.c,v 1.14 1998/01/21 15:10:14 ache Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.c,v 1.8.2.3 1998/01/21 19:01:54 ache Exp $   *   * $Log: pch.c,v $ + * Revision 1.8.2.3  1998/01/21 19:01:54  ache + * MFC: -I, --index-first option to emulate FreeBSD hack + *   * Revision 1.14  1998/01/21 15:10:14  ache   * Add -I or --index-first option to take Index: precedence over context diff,   * as it was in hacked FreeBSD version @@ -36,6 +39,9 @@   *   * Revision 1.8  1996/04/12 11:37:32  markm   * Attempt to break a $Log: pch.c,v $ + * Attempt to break a Revision 1.8.2.3  1998/01/21 19:01:54  ache + * Attempt to break a MFC: -I, --index-first option to emulate FreeBSD hack + * Attempt to break a   * Attempt to break a Revision 1.14  1998/01/21 15:10:14  ache   * Attempt to break a Add -I or --index-first option to take Index: precedence over context diff,   * Attempt to break a as it was in hacked FreeBSD version diff --git a/gnu/usr.bin/patch/pch.h b/gnu/usr.bin/patch/pch.h index 49670816989f..d7f40e1d177f 100644 --- a/gnu/usr.bin/patch/pch.h +++ b/gnu/usr.bin/patch/pch.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.h,v 1.2 1995/05/30 05:02:36 rgrimes Exp $   *   * $Log: pch.h,v $ + * Revision 1.2  1995/05/30 05:02:36  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1993/06/19  14:21:52  paul   * b-maked patch-2.10   * diff --git a/gnu/usr.bin/patch/util.h b/gnu/usr.bin/patch/util.h index 5bb36105d53b..d2e17a897903 100644 --- a/gnu/usr.bin/patch/util.h +++ b/gnu/usr.bin/patch/util.h @@ -1,4 +1,4 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/util.h,v 1.2 1995/05/30 05:02:38 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/util.h,v 1.2.6.1 1997/03/17 22:32:29 jmg Exp $   *   * Log: util.h,v   * Revision 2.0  86/09/17  15:40:06  lwall diff --git a/gnu/usr.bin/patch/version.c b/gnu/usr.bin/patch/version.c index dfd2e9a6bb86..740b82d3404c 100644 --- a/gnu/usr.bin/patch/version.c +++ b/gnu/usr.bin/patch/version.c @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.c,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.c,v 1.2 1995/05/30 05:02:39 rgrimes Exp $   *   * $Log: version.c,v $ + * Revision 1.2  1995/05/30 05:02:39  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1993/06/19  14:21:52  paul   * b-maked patch-2.10   * diff --git a/gnu/usr.bin/patch/version.h b/gnu/usr.bin/patch/version.h index f59ee261e639..5a57bc589048 100644 --- a/gnu/usr.bin/patch/version.h +++ b/gnu/usr.bin/patch/version.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.h,v 1.2 1995/05/30 05:02:40 rgrimes Exp $   *   * $Log: version.h,v $ + * Revision 1.2  1995/05/30 05:02:40  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1993/06/19  14:21:52  paul   * b-maked patch-2.10   * diff --git a/gnu/usr.bin/perl/eg/ADB b/gnu/usr.bin/perl/eg/ADB index 09b93c302aae..1d6da1a3465f 100644 --- a/gnu/usr.bin/perl/eg/ADB +++ b/gnu/usr.bin/perl/eg/ADB @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/ADB,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/ADB,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  # This script is only useful when used in your crash directory. diff --git a/gnu/usr.bin/perl/eg/changes b/gnu/usr.bin/perl/eg/changes index 9835e1b6ddc2..e6acacb35f09 100644 --- a/gnu/usr.bin/perl/eg/changes +++ b/gnu/usr.bin/perl/eg/changes @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/changes,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/changes,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  ($dir, $days) = @ARGV;  $dir = '/' if $dir eq ''; diff --git a/gnu/usr.bin/perl/eg/dus b/gnu/usr.bin/perl/eg/dus index 94c648bd7626..d2903576975a 100644 --- a/gnu/usr.bin/perl/eg/dus +++ b/gnu/usr.bin/perl/eg/dus @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/dus,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/dus,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # This script does a du -s on any directories in the current directory that  # are not mount points for another filesystem. diff --git a/gnu/usr.bin/perl/eg/findcp b/gnu/usr.bin/perl/eg/findcp index 47e443820d88..96c8ebc9f2ee 100644 --- a/gnu/usr.bin/perl/eg/findcp +++ b/gnu/usr.bin/perl/eg/findcp @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/findcp,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/findcp,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # This is a wrapper around the find command that pretends find has a switch  # of the form -cp host:destination.  It presumes your find implements -ls. diff --git a/gnu/usr.bin/perl/eg/findtar b/gnu/usr.bin/perl/eg/findtar index a60f10f76c32..1c9f823beea5 100644 --- a/gnu/usr.bin/perl/eg/findtar +++ b/gnu/usr.bin/perl/eg/findtar @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/findtar,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/findtar,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # findtar takes find-style arguments and spits out a tarfile on stdout.  # It won't work unless your find supports -ls and your tar the I flag. diff --git a/gnu/usr.bin/perl/eg/g/gcp b/gnu/usr.bin/perl/eg/g/gcp index 3e44a9cf182b..dca3cd6e03f3 100644 --- a/gnu/usr.bin/perl/eg/g/gcp +++ b/gnu/usr.bin/perl/eg/g/gcp @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gcp,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gcp,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $  # Here is a script to do global rcps.  See man page. diff --git a/gnu/usr.bin/perl/eg/g/gcp.man b/gnu/usr.bin/perl/eg/g/gcp.man index 8985742fa473..c188dc9698cb 100644 --- a/gnu/usr.bin/perl/eg/g/gcp.man +++ b/gnu/usr.bin/perl/eg/g/gcp.man @@ -1,4 +1,4 @@ -.\" $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gcp.man,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +.\" $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gcp.man,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $  .TH GCP 1C "13 May 1988"  .SH NAME  gcp \- global file copy diff --git a/gnu/usr.bin/perl/eg/g/ged b/gnu/usr.bin/perl/eg/g/ged index d296a84c913a..ecc72103dac7 100644 --- a/gnu/usr.bin/perl/eg/g/ged +++ b/gnu/usr.bin/perl/eg/g/ged @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/ged,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/ged,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $  # Does inplace edits on a set of files on a set of machines.  # diff --git a/gnu/usr.bin/perl/eg/g/gsh b/gnu/usr.bin/perl/eg/g/gsh index 3322a02ff74f..3d9cd6a09a82 100644 --- a/gnu/usr.bin/perl/eg/g/gsh +++ b/gnu/usr.bin/perl/eg/g/gsh @@ -1,6 +1,6 @@  #! /usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gsh,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gsh,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $  # Do rsh globally--see man page diff --git a/gnu/usr.bin/perl/eg/g/gsh.man b/gnu/usr.bin/perl/eg/g/gsh.man index 00eafb66d8c2..6675ca33ac91 100644 --- a/gnu/usr.bin/perl/eg/g/gsh.man +++ b/gnu/usr.bin/perl/eg/g/gsh.man @@ -1,4 +1,4 @@ -.\" $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gsh.man,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +.\" $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gsh.man,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $  .TH GSH 8 "13 May 1988"  .SH NAME  gsh \- global shell diff --git a/gnu/usr.bin/perl/eg/muck.man b/gnu/usr.bin/perl/eg/muck.man index 1b45ee0325c0..c485cfd5811e 100644 --- a/gnu/usr.bin/perl/eg/muck.man +++ b/gnu/usr.bin/perl/eg/muck.man @@ -1,4 +1,4 @@ -.\" $Header: /home/cvs/386BSD/ports/lang/perl/eg/muck.man,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +.\" $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/muck.man,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  .TH MUCK 1 "10 Jan 1989"  .SH NAME  muck \- make usage checker diff --git a/gnu/usr.bin/perl/eg/myrup b/gnu/usr.bin/perl/eg/myrup index b3185896ef98..52d8339ecad5 100644 --- a/gnu/usr.bin/perl/eg/myrup +++ b/gnu/usr.bin/perl/eg/myrup @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/myrup,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/myrup,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # This was a customization of ruptime requested by someone here who wanted  # to be able to find the least loaded machine easily.  It uses the diff --git a/gnu/usr.bin/perl/eg/nih b/gnu/usr.bin/perl/eg/nih index a376142cdd75..059eabb190a4 100644 --- a/gnu/usr.bin/perl/eg/nih +++ b/gnu/usr.bin/perl/eg/nih @@ -1,7 +1,7 @@  eval "exec /usr/bin/perl -Spi.bak $0 $*"  	if $running_under_some_shell; -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/nih,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/nih,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # This script makes #! scripts directly executable on machines that don't  # support #!.  It edits in place any scripts mentioned on the command line. diff --git a/gnu/usr.bin/perl/eg/relink b/gnu/usr.bin/perl/eg/relink index 69956c9a6738..716f208d6d2c 100644 --- a/gnu/usr.bin/perl/eg/relink +++ b/gnu/usr.bin/perl/eg/relink @@ -2,9 +2,13 @@  'di';  'ig00';  # -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/relink,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/relink,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  #  # $Log: relink,v $ +# Revision 1.1.1.1  1994/09/10 06:27:47  gclarkii +# Initial import of Perl 4.046 bmaked +# +#  # Revision 1.1.1.1  1993/08/23  21:29:43  nate  # PERL!  # diff --git a/gnu/usr.bin/perl/eg/rename b/gnu/usr.bin/perl/eg/rename index b568406f8603..049890a1753e 100644 --- a/gnu/usr.bin/perl/eg/rename +++ b/gnu/usr.bin/perl/eg/rename @@ -2,9 +2,13 @@  'di';  'ig00';  # -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/rename,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/rename,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  #  # $Log: rename,v $ +# Revision 1.1.1.1  1994/09/10 06:27:47  gclarkii +# Initial import of Perl 4.046 bmaked +# +#  # Revision 1.1.1.1  1993/08/23  21:29:43  nate  # PERL!  # diff --git a/gnu/usr.bin/perl/eg/rmfrom b/gnu/usr.bin/perl/eg/rmfrom index 0c8fa2c86aaf..18a9fc794fe2 100644 --- a/gnu/usr.bin/perl/eg/rmfrom +++ b/gnu/usr.bin/perl/eg/rmfrom @@ -1,6 +1,6 @@  #!/usr/bin/perl -n -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/rmfrom,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/rmfrom,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # A handy (but dangerous) script to put after a find ... -print. diff --git a/gnu/usr.bin/perl/eg/scan/scan_df b/gnu/usr.bin/perl/eg/scan/scan_df index 688738710a53..2db989bb3557 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_df +++ b/gnu/usr.bin/perl/eg/scan/scan_df @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_df,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_df,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # This report points out filesystems that are in danger of overflowing. diff --git a/gnu/usr.bin/perl/eg/scan/scan_last b/gnu/usr.bin/perl/eg/scan/scan_last index 6621120d3e44..6c109b43d499 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_last +++ b/gnu/usr.bin/perl/eg/scan/scan_last @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_last,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_last,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # This reports who was logged on at weird hours diff --git a/gnu/usr.bin/perl/eg/scan/scan_messages b/gnu/usr.bin/perl/eg/scan/scan_messages index a28cda858a17..81fc714dcf4e 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_messages +++ b/gnu/usr.bin/perl/eg/scan/scan_messages @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_messages,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_messages,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # This prints out extraordinary console messages.  You'll need to customize. diff --git a/gnu/usr.bin/perl/eg/scan/scan_passwd b/gnu/usr.bin/perl/eg/scan/scan_passwd index f9c53c7d2385..9cfa77f4b135 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_passwd +++ b/gnu/usr.bin/perl/eg/scan/scan_passwd @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_passwd,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_passwd,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # This scans passwd file for security holes. diff --git a/gnu/usr.bin/perl/eg/scan/scan_ps b/gnu/usr.bin/perl/eg/scan/scan_ps index b0480d544c30..9a99d1dddb18 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_ps +++ b/gnu/usr.bin/perl/eg/scan/scan_ps @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_ps,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_ps,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # This looks for looping processes. diff --git a/gnu/usr.bin/perl/eg/scan/scan_sudo b/gnu/usr.bin/perl/eg/scan/scan_sudo index a95a6092b467..81e014872d44 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_sudo +++ b/gnu/usr.bin/perl/eg/scan/scan_sudo @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_sudo,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_sudo,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # Analyze the sudo log. diff --git a/gnu/usr.bin/perl/eg/scan/scan_suid b/gnu/usr.bin/perl/eg/scan/scan_suid index a730e0aaee16..8a694e5f2014 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_suid +++ b/gnu/usr.bin/perl/eg/scan/scan_suid @@ -1,6 +1,6 @@  #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_suid,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_suid,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # Look for new setuid root files. diff --git a/gnu/usr.bin/perl/eg/scan/scanner b/gnu/usr.bin/perl/eg/scan/scanner index f773e87e8f8a..64e2469aa0ea 100644 --- a/gnu/usr.bin/perl/eg/scan/scanner +++ b/gnu/usr.bin/perl/eg/scan/scanner @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scanner,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scanner,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $  # This runs all the scan_* routines on all the machines in /etc/ghosts.  # We run this every morning at about 6 am: diff --git a/gnu/usr.bin/perl/eg/shmkill b/gnu/usr.bin/perl/eg/shmkill index e8d1b11b3630..67513f2c0a86 100644 --- a/gnu/usr.bin/perl/eg/shmkill +++ b/gnu/usr.bin/perl/eg/shmkill @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/shmkill,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/shmkill,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $  # A script to call from crontab periodically when people are leaving shared  # memory sitting around unattached. diff --git a/gnu/usr.bin/perl/eg/van/empty b/gnu/usr.bin/perl/eg/van/empty index ee656e68563f..ca9e5de64e6e 100644 --- a/gnu/usr.bin/perl/eg/van/empty +++ b/gnu/usr.bin/perl/eg/van/empty @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/empty,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/empty,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $  # This script empties a trashcan. diff --git a/gnu/usr.bin/perl/eg/van/unvanish b/gnu/usr.bin/perl/eg/van/unvanish index 50459821546b..06e1aa1245d1 100644 --- a/gnu/usr.bin/perl/eg/van/unvanish +++ b/gnu/usr.bin/perl/eg/van/unvanish @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/unvanish,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/unvanish,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $  sub it {      if ($olddir ne '.') { diff --git a/gnu/usr.bin/perl/eg/van/vanexp b/gnu/usr.bin/perl/eg/van/vanexp index 79b78854d54c..e30df855d472 100644 --- a/gnu/usr.bin/perl/eg/van/vanexp +++ b/gnu/usr.bin/perl/eg/van/vanexp @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/vanexp,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/vanexp,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $  # This is for running from a find at night to expire old .deleteds diff --git a/gnu/usr.bin/perl/eg/van/vanish b/gnu/usr.bin/perl/eg/van/vanish index b79776a4ebdc..769789ea2ad3 100644 --- a/gnu/usr.bin/perl/eg/van/vanish +++ b/gnu/usr.bin/perl/eg/van/vanish @@ -1,6 +1,6 @@  #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/vanish,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/vanish,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $  sub it {      if ($olddir ne '.') { diff --git a/gnu/usr.bin/perl/emacs/perldb.pl b/gnu/usr.bin/perl/emacs/perldb.pl index 7c9e6513ea0c..df932e981529 100644 --- a/gnu/usr.bin/perl/emacs/perldb.pl +++ b/gnu/usr.bin/perl/emacs/perldb.pl @@ -3,7 +3,7 @@ package DB;  # modified Perl debugger, to be run from Emacs in perldb-mode  # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990 -$header = '$Header: /home/cvs/386BSD/ports/lang/perl/emacs/perldb.pl,v 1.1.1.1 1993/08/23 21:29:46 nate Exp $'; +$header = '$Header: /home/ncvs/src/gnu/usr.bin/perl/emacs/perldb.pl,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $';  #  # This file is automatically included if you do perl -d.  # It's probably not useful to include this yourself. @@ -13,6 +13,10 @@ $header = '$Header: /home/cvs/386BSD/ports/lang/perl/emacs/perldb.pl,v 1.1.1.1 1  # have a breakpoint.  It also inserts a do 'perldb.pl' before the first line.  #  # $Log: perldb.pl,v $ +# Revision 1.1.1.1  1994/09/10 06:27:50  gclarkii +# Initial import of Perl 4.046 bmaked +# +#  # Revision 1.1.1.1  1993/08/23  21:29:46  nate  # PERL!  # diff --git a/gnu/usr.bin/perl/lib/ctime.pl b/gnu/usr.bin/perl/lib/ctime.pl index 4c59754b7b81..4a5686c52548 100644 --- a/gnu/usr.bin/perl/lib/ctime.pl +++ b/gnu/usr.bin/perl/lib/ctime.pl @@ -3,7 +3,7 @@  ;# Waldemar Kebsch, Federal Republic of Germany, November 1988  ;# kebsch.pad@nixpbe.UUCP  ;# Modified March 1990, Feb 1991 to properly handle timezones -;#  $RCSfile: ctime.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;#  $RCSfile: ctime.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:52 $  ;#   Marion Hakanson (hakanson@cse.ogi.edu)  ;#   Oregon Graduate Institute of Science and Technology  ;# diff --git a/gnu/usr.bin/perl/lib/gethostname.pl b/gnu/usr.bin/perl/lib/gethostname.pl index 2342bad7d7b9..5c8c2c59b0b6 100644 --- a/gnu/usr.bin/perl/lib/gethostname.pl +++ b/gnu/usr.bin/perl/lib/gethostname.pl @@ -4,7 +4,7 @@  # Written 13-Feb-96 by Jörg Wunsch, interface business GmbH Dresden.  # Placed in the public domain.  # -# $Id: gethostname.pl,v 1.1 1996/02/13 13:17:49 joerg Exp $ +# $Id: gethostname.pl,v 1.2 1996/03/18 21:42:31 joerg Exp $  #  package gethostname; diff --git a/gnu/usr.bin/perl/lib/getopt.pl b/gnu/usr.bin/perl/lib/getopt.pl index 6772d54aae20..6c3c4996f087 100644 --- a/gnu/usr.bin/perl/lib/getopt.pl +++ b/gnu/usr.bin/perl/lib/getopt.pl @@ -1,4 +1,4 @@ -;# $RCSfile: getopt.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: getopt.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:52 $  ;# Process single-character switches with switch clustering.  Pass one argument  ;# which is a string containing all switches that take an argument.  For each diff --git a/gnu/usr.bin/perl/lib/importenv.pl b/gnu/usr.bin/perl/lib/importenv.pl index c9ad330b6d03..2d7b7ee12e9f 100644 --- a/gnu/usr.bin/perl/lib/importenv.pl +++ b/gnu/usr.bin/perl/lib/importenv.pl @@ -1,4 +1,4 @@ -;# $Header: /home/cvs/386BSD/ports/lang/perl/lib/importenv.pl,v 1.1.1.1 1993/08/23 21:29:53 nate Exp $ +;# $Header: /home/ncvs/src/gnu/usr.bin/perl/lib/importenv.pl,v 1.1.1.1 1994/09/10 06:27:52 gclarkii Exp $  ;# This file, when interpreted, pulls the environment into normal variables.  ;# Usage: diff --git a/gnu/usr.bin/perl/lib/perldb.pl b/gnu/usr.bin/perl/lib/perldb.pl index 1aadb934e979..68f825283671 100644 --- a/gnu/usr.bin/perl/lib/perldb.pl +++ b/gnu/usr.bin/perl/lib/perldb.pl @@ -4,7 +4,7 @@ package DB;  # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990  # Johan Vromans -- upgrade to 4.0 pl 10 -$header = '$RCSfile: perldb.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:51 $'; +$header = '$RCSfile: perldb.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $';  #  # This file is automatically included if you do perl -d.  # It's probably not useful to include this yourself. @@ -14,6 +14,10 @@ $header = '$RCSfile: perldb.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:51  # have a breakpoint.  It also inserts a do 'perldb.pl' before the first line.  #  # $Log: perldb.pl,v $ +# Revision 1.1.1.1  1994/09/10 06:27:53  gclarkii +# Initial import of Perl 4.046 bmaked +# +#  # Revision 1.1.1.1  1993/08/23  21:29:51  nate  # PERL!  # diff --git a/gnu/usr.bin/perl/lib/pwd.pl b/gnu/usr.bin/perl/lib/pwd.pl index 16baadcdcdd4..8f78e7e70ec3 100644 --- a/gnu/usr.bin/perl/lib/pwd.pl +++ b/gnu/usr.bin/perl/lib/pwd.pl @@ -1,8 +1,12 @@  ;# pwd.pl - keeps track of current working directory in PWD environment var  ;# -;# $RCSfile: pwd.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: pwd.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $  ;#  ;# $Log: pwd.pl,v $ +;# Revision 1.1.1.1  1994/09/10 06:27:53  gclarkii +;# Initial import of Perl 4.046 bmaked +;# +;#  # Revision 1.1.1.1  1993/08/23  21:29:52  nate  # PERL!  # diff --git a/gnu/usr.bin/perl/lib/stat.pl b/gnu/usr.bin/perl/lib/stat.pl index 6186f5428d18..cd9321c9966c 100644 --- a/gnu/usr.bin/perl/lib/stat.pl +++ b/gnu/usr.bin/perl/lib/stat.pl @@ -1,4 +1,4 @@ -;# $Header: /home/cvs/386BSD/ports/lang/perl/lib/stat.pl,v 1.1.1.1 1993/08/23 21:29:53 nate Exp $ +;# $Header: /home/ncvs/src/gnu/usr.bin/perl/lib/stat.pl,v 1.1.1.1 1994/09/10 06:27:53 gclarkii Exp $  ;# Usage:  ;#	require 'stat.pl'; diff --git a/gnu/usr.bin/perl/lib/syslog.pl b/gnu/usr.bin/perl/lib/syslog.pl index 94a4f6a19a00..e7122df5d102 100644 --- a/gnu/usr.bin/perl/lib/syslog.pl +++ b/gnu/usr.bin/perl/lib/syslog.pl @@ -2,6 +2,10 @@  # syslog.pl  #  # $Log: syslog.pl,v $ +# Revision 1.1.1.1  1994/09/10 06:27:53  gclarkii +# Initial import of Perl 4.046 bmaked +# +#  # Revision 1.1.1.1  1993/08/23  21:29:51  nate  # PERL!  # diff --git a/gnu/usr.bin/perl/lib/termcap.pl b/gnu/usr.bin/perl/lib/termcap.pl index 81556dbd3fb4..2e173baa33cf 100644 --- a/gnu/usr.bin/perl/lib/termcap.pl +++ b/gnu/usr.bin/perl/lib/termcap.pl @@ -1,4 +1,4 @@ -;# $RCSfile: termcap.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: termcap.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $  ;#  ;# Usage:  ;#	require 'ioctl.pl'; diff --git a/gnu/usr.bin/perl/lib/validate.pl b/gnu/usr.bin/perl/lib/validate.pl index 4b901b6c314e..df92731c9f7b 100644 --- a/gnu/usr.bin/perl/lib/validate.pl +++ b/gnu/usr.bin/perl/lib/validate.pl @@ -1,4 +1,4 @@ -;# $Header: /home/cvs/386BSD/ports/lang/perl/lib/validate.pl,v 1.1.1.1 1993/08/23 21:29:51 nate Exp $ +;# $Header: /home/ncvs/src/gnu/usr.bin/perl/lib/validate.pl,v 1.1.1.1 1994/09/10 06:27:53 gclarkii Exp $  ;# The validate routine takes a single multiline string consisting of  ;# lines containing a filename plus a file test to try on it.  (The diff --git a/gnu/usr.bin/perl/misc/c2ph b/gnu/usr.bin/perl/misc/c2ph index 1a2e4b8306ea..7214e3b1d43c 100644 --- a/gnu/usr.bin/perl/misc/c2ph +++ b/gnu/usr.bin/perl/misc/c2ph @@ -10,7 +10,7 @@  #   See the usage message for more.  If this isn't enough, read the code.  # -$RCSID = '$RCSfile: c2ph,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:31 $'; +$RCSID = '$RCSfile: c2ph,v $$Revision: 1.2 $$Date: 1994/10/29 07:14:38 $';  ###################################################################### diff --git a/gnu/usr.bin/perl/misc/pstruct b/gnu/usr.bin/perl/misc/pstruct index 5dfea04776f6..c9f9a04aa4ea 100644 --- a/gnu/usr.bin/perl/misc/pstruct +++ b/gnu/usr.bin/perl/misc/pstruct @@ -10,7 +10,7 @@  #   See the usage message for more.  If this isn't enough, read the code.  # -$RCSID = '$RCSfile: pstruct,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:31 $'; +$RCSID = '$RCSfile: pstruct,v $$Revision: 1.2 $$Date: 1994/10/29 07:14:39 $';  ###################################################################### diff --git a/gnu/usr.bin/perl/perl/EXTERN.h b/gnu/usr.bin/perl/perl/EXTERN.h index fec95bf60906..31c8caecca09 100644 --- a/gnu/usr.bin/perl/perl/EXTERN.h +++ b/gnu/usr.bin/perl/perl/EXTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: EXTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: EXTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:46 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: EXTERN.h,v $ + * Revision 1.2  1995/05/30 05:02:46  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/INTERN.h b/gnu/usr.bin/perl/perl/INTERN.h index d1792d852ea3..6a9417dceca4 100644 --- a/gnu/usr.bin/perl/perl/INTERN.h +++ b/gnu/usr.bin/perl/perl/INTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: INTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: INTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:47 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: INTERN.h,v $ + * Revision 1.2  1995/05/30 05:02:47  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/arg.h b/gnu/usr.bin/perl/perl/arg.h index b3f8d5a050cc..53e5583b1924 100644 --- a/gnu/usr.bin/perl/perl/arg.h +++ b/gnu/usr.bin/perl/perl/arg.h @@ -1,4 +1,4 @@ -/* $RCSfile: arg.h,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:24 $ +/* $RCSfile: arg.h,v $$Revision: 1.3 $$Date: 1995/05/30 05:02:49 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: arg.h,v $ + * Revision 1.3  1995/05/30 05:02:49  rgrimes + * Remove trailing whitespace. + *   * Revision 1.2  1994/09/11  03:17:24  gclarkii   * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h   * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/array.c b/gnu/usr.bin/perl/perl/array.c index a413e3b2a670..5436decde8f1 100644 --- a/gnu/usr.bin/perl/perl/array.c +++ b/gnu/usr.bin/perl/perl/array.c @@ -1,4 +1,4 @@ -/* $RCSfile: array.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:31 $ +/* $RCSfile: array.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:50 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: array.c,v $ + * Revision 1.2  1995/05/30 05:02:50  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:31  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/array.h b/gnu/usr.bin/perl/perl/array.h index 9b2207be765c..97f97a57b603 100644 --- a/gnu/usr.bin/perl/perl/array.h +++ b/gnu/usr.bin/perl/perl/array.h @@ -1,4 +1,4 @@ -/* $RCSfile: array.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: array.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:51 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: array.h,v $ + * Revision 1.2  1995/05/30 05:02:51  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/cmd.c b/gnu/usr.bin/perl/perl/cmd.c index 162926d0a316..345258f7d780 100644 --- a/gnu/usr.bin/perl/perl/cmd.c +++ b/gnu/usr.bin/perl/perl/cmd.c @@ -1,4 +1,4 @@ -/* $RCSfile: cmd.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: cmd.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:52 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: cmd.c,v $ + * Revision 1.2  1995/05/30 05:02:52  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:32  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/cmd.h b/gnu/usr.bin/perl/perl/cmd.h index da0fa8e7696d..dc23a7ead278 100644 --- a/gnu/usr.bin/perl/perl/cmd.h +++ b/gnu/usr.bin/perl/perl/cmd.h @@ -1,4 +1,4 @@ -/* $RCSfile: cmd.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: cmd.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:54 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: cmd.h,v $ + * Revision 1.2  1995/05/30 05:02:54  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/cons.c b/gnu/usr.bin/perl/perl/cons.c index bbf783ef7843..c7de42152a43 100644 --- a/gnu/usr.bin/perl/perl/cons.c +++ b/gnu/usr.bin/perl/perl/cons.c @@ -1,4 +1,4 @@ -/* $RCSfile: cons.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: cons.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:56 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: cons.c,v $ + * Revision 1.2  1995/05/30 05:02:56  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:32  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/consarg.c b/gnu/usr.bin/perl/perl/consarg.c index f6738639c22f..0f7faa07bb91 100644 --- a/gnu/usr.bin/perl/perl/consarg.c +++ b/gnu/usr.bin/perl/perl/consarg.c @@ -1,4 +1,4 @@ -/* $RCSfile: consarg.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:02:57 $ +/* $RCSfile: consarg.c,v $$Revision: 1.3.6.1 $$Date: 1997/08/08 20:54:50 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: consarg.c,v $ + * Revision 1.3.6.1  1997/08/08 20:54:50  joerg + * MFC: fix buffer overflow condition. + *   * Revision 1.3  1995/05/30 05:02:57  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/crypt.c b/gnu/usr.bin/perl/perl/crypt.c index 3e95f452cf7f..fac3d61b4df5 100644 --- a/gnu/usr.bin/perl/perl/crypt.c +++ b/gnu/usr.bin/perl/perl/crypt.c @@ -36,7 +36,7 @@  #if defined(LIBC_SCCS) && !defined(lint)  /* from static char sccsid[] = "@(#)crypt.c	5.11 (Berkeley) 6/25/91"; */ -static char rcsid[] = "$Header: /home/ncvs/src/gnu/usr.bin/perl/perl/crypt.c,v 1.1.1.1 1994/09/10 06:27:37 gclarkii Exp $"; +static char rcsid[] = "$Header: /home/ncvs/src/gnu/usr.bin/perl/perl/crypt.c,v 1.2 1995/05/30 05:02:58 rgrimes Exp $";  #endif /* LIBC_SCCS and not lint */  #include <unistd.h> diff --git a/gnu/usr.bin/perl/perl/doarg.c b/gnu/usr.bin/perl/perl/doarg.c index 2a647875b536..0f6133887619 100644 --- a/gnu/usr.bin/perl/perl/doarg.c +++ b/gnu/usr.bin/perl/perl/doarg.c @@ -1,4 +1,4 @@ -/* $RCSfile: doarg.c,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:30 $ +/* $RCSfile: doarg.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:02:59 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: doarg.c,v $ + * Revision 1.3  1995/05/30 05:02:59  rgrimes + * Remove trailing whitespace. + *   * Revision 1.2  1994/09/11  03:17:30  gclarkii   * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h   * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/doio.c b/gnu/usr.bin/perl/perl/doio.c index 0ace3773f9dd..165311abe35e 100644 --- a/gnu/usr.bin/perl/perl/doio.c +++ b/gnu/usr.bin/perl/perl/doio.c @@ -1,4 +1,4 @@ -/* $RCSfile: doio.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:03:00 $ +/* $RCSfile: doio.c,v $$Revision: 1.3.6.1 $$Date: 1998/02/15 16:30:08 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: doio.c,v $ + * Revision 1.3.6.1  1998/02/15 16:30:08  jkh + * MFC: security tweak, support for -T and -B flags. + *   * Revision 1.3  1995/05/30 05:03:00  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/dolist.c b/gnu/usr.bin/perl/perl/dolist.c index 448a260ad4e7..59fac1f1e3cb 100644 --- a/gnu/usr.bin/perl/perl/dolist.c +++ b/gnu/usr.bin/perl/perl/dolist.c @@ -1,4 +1,4 @@ -/* $RCSfile: dolist.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: dolist.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:01 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: dolist.c,v $ + * Revision 1.2  1995/05/30 05:03:01  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:32  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/dump.c b/gnu/usr.bin/perl/perl/dump.c index 7a07135efb37..e5f286500029 100644 --- a/gnu/usr.bin/perl/perl/dump.c +++ b/gnu/usr.bin/perl/perl/dump.c @@ -1,4 +1,4 @@ -/* $RCSfile: dump.c,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:33 $ +/* $RCSfile: dump.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:03:02 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: dump.c,v $ + * Revision 1.3  1995/05/30 05:03:02  rgrimes + * Remove trailing whitespace. + *   * Revision 1.2  1994/09/11  03:17:33  gclarkii   * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h   * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/eval.c b/gnu/usr.bin/perl/perl/eval.c index fcb5403eebce..1c126b173b94 100644 --- a/gnu/usr.bin/perl/perl/eval.c +++ b/gnu/usr.bin/perl/perl/eval.c @@ -1,4 +1,4 @@ -/* $RCSfile: eval.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:03 $ +/* $RCSfile: eval.c,v $$Revision: 1.2.6.1 $$Date: 1998/02/15 16:30:09 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: eval.c,v $ + * Revision 1.2.6.1  1998/02/15 16:30:09  jkh + * MFC: security tweak, support for -T and -B flags. + *   * Revision 1.2  1995/05/30 05:03:03  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/form.c b/gnu/usr.bin/perl/perl/form.c index cfb7aed218c8..a0d87ce3d235 100644 --- a/gnu/usr.bin/perl/perl/form.c +++ b/gnu/usr.bin/perl/perl/form.c @@ -1,4 +1,4 @@ -/* $RCSfile: form.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: form.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:04 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: form.c,v $ + * Revision 1.2  1995/05/30 05:03:04  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:33  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/form.h b/gnu/usr.bin/perl/perl/form.h index 3f63289744ca..39d0a15f36ab 100644 --- a/gnu/usr.bin/perl/perl/form.h +++ b/gnu/usr.bin/perl/perl/form.h @@ -1,4 +1,4 @@ -/* $RCSfile: form.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: form.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:05 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: form.h,v $ + * Revision 1.2  1995/05/30 05:03:05  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/handy.h b/gnu/usr.bin/perl/perl/handy.h index df719841233b..5509c67739c0 100644 --- a/gnu/usr.bin/perl/perl/handy.h +++ b/gnu/usr.bin/perl/perl/handy.h @@ -1,4 +1,4 @@ -/* $RCSfile: handy.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: handy.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:06 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: handy.h,v $ + * Revision 1.2  1995/05/30 05:03:06  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/hash.c b/gnu/usr.bin/perl/perl/hash.c index 5d9b5940a90d..a8cd4b12e261 100644 --- a/gnu/usr.bin/perl/perl/hash.c +++ b/gnu/usr.bin/perl/perl/hash.c @@ -1,4 +1,4 @@ -/* $RCSfile: hash.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: hash.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:07 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: hash.c,v $ + * Revision 1.2  1995/05/30 05:03:07  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:33  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/hash.h b/gnu/usr.bin/perl/perl/hash.h index ddf2a11b064e..bfec83b201cd 100644 --- a/gnu/usr.bin/perl/perl/hash.h +++ b/gnu/usr.bin/perl/perl/hash.h @@ -1,4 +1,4 @@ -/* $RCSfile: hash.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: hash.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:08 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: hash.h,v $ + * Revision 1.2  1995/05/30 05:03:08  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/malloc.c b/gnu/usr.bin/perl/perl/malloc.c index 5cc86d910882..ccae6d08b6cf 100644 --- a/gnu/usr.bin/perl/perl/malloc.c +++ b/gnu/usr.bin/perl/perl/malloc.c @@ -1,6 +1,9 @@ -/* $RCSfile: malloc.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: malloc.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:09 $   *   * $Log: malloc.c,v $ + * Revision 1.2  1995/05/30 05:03:09  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:33  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/perl.1 b/gnu/usr.bin/perl/perl/perl.1 index 4a8850984896..a590270d201e 100644 --- a/gnu/usr.bin/perl/perl/perl.1 +++ b/gnu/usr.bin/perl/perl/perl.1 @@ -1,7 +1,10 @@  .rn '' }` -''' $RCSfile: perl.1,v $$Revision: 1.4 $$Date: 1997/08/30 12:22:46 $ +''' $RCSfile: perl.1,v $$Revision: 1.3.2.1 $$Date: 1997/10/12 08:11:42 $  '''   ''' $Log: perl.1,v $ +''' Revision 1.3.2.1  1997/10/12 08:11:42  jmg +''' MFC: spelling fixes +'''  ''' Revision 1.4  1997/08/30 12:22:46  jmg  ''' fix a few spelling changes  ''' diff --git a/gnu/usr.bin/perl/perl/perl.c b/gnu/usr.bin/perl/perl/perl.c index a8b050d009e9..ba5825cb77f7 100644 --- a/gnu/usr.bin/perl/perl/perl.c +++ b/gnu/usr.bin/perl/perl/perl.c @@ -1,4 +1,4 @@ -char rcsid[] = "$RCSfile: perl.c,v $$Revision: 1.9 $$Date: 1998/03/10 19:43:27 $\nPatch level: ###\n"; +char rcsid[] = "$RCSfile: perl.c,v $$Revision: 1.7.2.2 $$Date: 1998/03/12 19:27:47 $\nPatch level: ###\n";  /*   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@ char rcsid[] = "$RCSfile: perl.c,v $$Revision: 1.9 $$Date: 1998/03/10 19:43:27 $   *    License or the Artistic License, as specified in the README file.   *   * $Log: perl.c,v $ + * Revision 1.7.2.2  1998/03/12 19:27:47  guido + * MFC: mktemp -> mkstemp + *   * Revision 1.7.2.1  1998/02/15 16:30:09  jkh   * MFC: security tweak, support for -T and -B flags.   * diff --git a/gnu/usr.bin/perl/perl/perl.h b/gnu/usr.bin/perl/perl/perl.h index af5873d3a5e6..e42ba4939ee7 100644 --- a/gnu/usr.bin/perl/perl/perl.h +++ b/gnu/usr.bin/perl/perl/perl.h @@ -1,4 +1,4 @@ -/* $RCSfile: perl.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:11 $ +/* $RCSfile: perl.h,v $$Revision: 1.2.6.1 $$Date: 1998/02/15 16:30:09 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: perl.h,v $ + * Revision 1.2.6.1  1998/02/15 16:30:09  jkh + * MFC: security tweak, support for -T and -B flags. + *   * Revision 1.2  1995/05/30 05:03:11  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/regcomp.c b/gnu/usr.bin/perl/perl/regcomp.c index 0287778f2878..c264a8ee6e02 100644 --- a/gnu/usr.bin/perl/perl/regcomp.c +++ b/gnu/usr.bin/perl/perl/regcomp.c @@ -7,9 +7,12 @@   * blame Henry for some of the lack of readability.   */ -/* $RCSfile: regcomp.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: regcomp.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:14 $   *   * $Log: regcomp.c,v $ + * Revision 1.2  1995/05/30 05:03:14  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:33  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/regcomp.h b/gnu/usr.bin/perl/perl/regcomp.h index b6b8c182aa3b..8178189d21e7 100644 --- a/gnu/usr.bin/perl/perl/regcomp.h +++ b/gnu/usr.bin/perl/perl/regcomp.h @@ -1,6 +1,9 @@ -/* $RCSfile: regcomp.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: regcomp.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:15 $   *   * $Log: regcomp.h,v $ + * Revision 1.2  1995/05/30 05:03:15  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/regexec.c b/gnu/usr.bin/perl/perl/regexec.c index b8353061b256..a1f5ebb9eafa 100644 --- a/gnu/usr.bin/perl/perl/regexec.c +++ b/gnu/usr.bin/perl/perl/regexec.c @@ -7,9 +7,12 @@   * blame Henry for some of the lack of readability.   */ -/* $RCSfile: regexec.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: regexec.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:16 $   *   * $Log: regexec.c,v $ + * Revision 1.2  1995/05/30 05:03:16  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:33  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/regexp.h b/gnu/usr.bin/perl/perl/regexp.h index 634b19b913ce..075db02a5dec 100644 --- a/gnu/usr.bin/perl/perl/regexp.h +++ b/gnu/usr.bin/perl/perl/regexp.h @@ -5,9 +5,12 @@   * not the System V one.   */ -/* $RCSfile: regexp.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: regexp.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:17 $   *   * $Log: regexp.h,v $ + * Revision 1.2  1995/05/30 05:03:17  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/spat.h b/gnu/usr.bin/perl/perl/spat.h index 7c392b0de11a..dea4561b1ea9 100644 --- a/gnu/usr.bin/perl/perl/spat.h +++ b/gnu/usr.bin/perl/perl/spat.h @@ -1,4 +1,4 @@ -/* $RCSfile: spat.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: spat.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:18 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: spat.h,v $ + * Revision 1.2  1995/05/30 05:03:18  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/stab.c b/gnu/usr.bin/perl/perl/stab.c index 6edb599b0b17..4b1dc4bf4225 100644 --- a/gnu/usr.bin/perl/perl/stab.c +++ b/gnu/usr.bin/perl/perl/stab.c @@ -1,4 +1,4 @@ -/* $RCSfile: stab.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:19 $ +/* $RCSfile: stab.c,v $$Revision: 1.2.6.1 $$Date: 1997/05/22 21:41:35 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: stab.c,v $ + * Revision 1.2.6.1  1997/05/22 21:41:35  imp + * MFG->2.2: Fix buffer overflow + *   * Revision 1.2  1995/05/30 05:03:19  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/stab.h b/gnu/usr.bin/perl/perl/stab.h index 9da5a4ac5282..097657549df9 100644 --- a/gnu/usr.bin/perl/perl/stab.h +++ b/gnu/usr.bin/perl/perl/stab.h @@ -1,4 +1,4 @@ -/* $RCSfile: stab.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: stab.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:20 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: stab.h,v $ + * Revision 1.2  1995/05/30 05:03:20  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/str.c b/gnu/usr.bin/perl/perl/str.c index 4d3bb5ab08fb..e404f29cdb5c 100644 --- a/gnu/usr.bin/perl/perl/str.c +++ b/gnu/usr.bin/perl/perl/str.c @@ -1,4 +1,4 @@ -/* $RCSfile: str.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:21 $ +/* $RCSfile: str.c,v $$Revision: 1.2.6.1 $$Date: 1997/08/08 20:54:50 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: str.c,v $ + * Revision 1.2.6.1  1997/08/08 20:54:50  joerg + * MFC: fix buffer overflow condition. + *   * Revision 1.2  1995/05/30 05:03:21  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/str.h b/gnu/usr.bin/perl/perl/str.h index 8e95749e246a..b318add1afb3 100644 --- a/gnu/usr.bin/perl/perl/str.h +++ b/gnu/usr.bin/perl/perl/str.h @@ -1,4 +1,4 @@ -/* $RCSfile: str.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: str.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:22 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: str.h,v $ + * Revision 1.2  1995/05/30 05:03:22  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/t/TEST b/gnu/usr.bin/perl/perl/t/TEST index 957a868c5cdd..445ab6c4f74a 100755 --- a/gnu/usr.bin/perl/perl/t/TEST +++ b/gnu/usr.bin/perl/perl/t/TEST @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: TEST,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:01 $ +# $RCSfile: TEST,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:38 $  # This is written in a peculiar style, since we're trying to avoid  # most of the constructs we'll be testing for. diff --git a/gnu/usr.bin/perl/perl/t/base/cond.t b/gnu/usr.bin/perl/perl/t/base/cond.t index 7d49f4e9b591..ec9e3222090f 100755 --- a/gnu/usr.bin/perl/perl/t/base/cond.t +++ b/gnu/usr.bin/perl/perl/t/base/cond.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/cond.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/cond.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  # make sure conditional operators work diff --git a/gnu/usr.bin/perl/perl/t/base/if.t b/gnu/usr.bin/perl/perl/t/base/if.t index 2a9b82c77e7d..627324b86304 100755 --- a/gnu/usr.bin/perl/perl/t/base/if.t +++ b/gnu/usr.bin/perl/perl/t/base/if.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/if.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/if.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/base/lex.t b/gnu/usr.bin/perl/perl/t/base/lex.t index cd6321d9f081..a3535cc91bd5 100755 --- a/gnu/usr.bin/perl/perl/t/base/lex.t +++ b/gnu/usr.bin/perl/perl/t/base/lex.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/lex.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/lex.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..18\n"; diff --git a/gnu/usr.bin/perl/perl/t/base/pat.t b/gnu/usr.bin/perl/perl/t/base/pat.t index 2c8d9a9f2b85..61c0d08fac8a 100755 --- a/gnu/usr.bin/perl/perl/t/base/pat.t +++ b/gnu/usr.bin/perl/perl/t/base/pat.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/pat.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/pat.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/base/term.t b/gnu/usr.bin/perl/perl/t/base/term.t index c049c5872364..aaa59baaccad 100755 --- a/gnu/usr.bin/perl/perl/t/base/term.t +++ b/gnu/usr.bin/perl/perl/t/base/term.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/term.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/term.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/elsif.t b/gnu/usr.bin/perl/perl/t/cmd/elsif.t index 0e3457f6ad1f..332a16b41de0 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/elsif.t +++ b/gnu/usr.bin/perl/perl/t/cmd/elsif.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/elsif.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/elsif.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  sub foo {      if ($_[0] == 1) { diff --git a/gnu/usr.bin/perl/perl/t/cmd/for.t b/gnu/usr.bin/perl/perl/t/cmd/for.t index 4a0c9226bae8..4a27fc8a97e9 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/for.t +++ b/gnu/usr.bin/perl/perl/t/cmd/for.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/for.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/for.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..7\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/mod.t b/gnu/usr.bin/perl/perl/t/cmd/mod.t index eeb44d97b5d8..0b18a348cbbb 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/mod.t +++ b/gnu/usr.bin/perl/perl/t/cmd/mod.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/mod.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/mod.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..7\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/subval.t b/gnu/usr.bin/perl/perl/t/cmd/subval.t index f7f411b34ab1..e7795f931223 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/subval.t +++ b/gnu/usr.bin/perl/perl/t/cmd/subval.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: subval.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:05 $ +# $RCSfile: subval.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:39 $  sub foo1 {      'true1'; diff --git a/gnu/usr.bin/perl/perl/t/cmd/switch.t b/gnu/usr.bin/perl/perl/t/cmd/switch.t index d0d4c932ad0d..724d567ca869 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/switch.t +++ b/gnu/usr.bin/perl/perl/t/cmd/switch.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/switch.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/switch.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..18\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/while.t b/gnu/usr.bin/perl/perl/t/cmd/while.t index 006e251a9d2e..58719f70d14b 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/while.t +++ b/gnu/usr.bin/perl/perl/t/cmd/while.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/while.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/while.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $  print "1..10\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/cmdopt.t b/gnu/usr.bin/perl/perl/t/comp/cmdopt.t index 3c47130602ca..902126a5dceb 100755 --- a/gnu/usr.bin/perl/perl/t/comp/cmdopt.t +++ b/gnu/usr.bin/perl/perl/t/comp/cmdopt.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/cmdopt.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/cmdopt.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..40\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/cpp.t b/gnu/usr.bin/perl/perl/t/comp/cpp.t index 8cceb73ca8a0..656ea25d3918 100755 --- a/gnu/usr.bin/perl/perl/t/comp/cpp.t +++ b/gnu/usr.bin/perl/perl/t/comp/cpp.t @@ -1,6 +1,6 @@  #!./perl -P -# $RCSfile: cpp.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:06 $ +# $RCSfile: cpp.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:40 $  open(CONFIG,"../config.sh") || die;  while (<CONFIG>) { diff --git a/gnu/usr.bin/perl/perl/t/comp/decl.t b/gnu/usr.bin/perl/perl/t/comp/decl.t index f1c84c2190ce..81f921e576af 100755 --- a/gnu/usr.bin/perl/perl/t/comp/decl.t +++ b/gnu/usr.bin/perl/perl/t/comp/decl.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/decl.t,v 1.1.1.1 1993/08/23 21:30:07 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/decl.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  # check to see if subroutine declarations work everwhere diff --git a/gnu/usr.bin/perl/perl/t/comp/multiline.t b/gnu/usr.bin/perl/perl/t/comp/multiline.t index 78df482d3e7c..49e43f77308e 100755 --- a/gnu/usr.bin/perl/perl/t/comp/multiline.t +++ b/gnu/usr.bin/perl/perl/t/comp/multiline.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/multiline.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/multiline.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..5\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/script.t b/gnu/usr.bin/perl/perl/t/comp/script.t index 9dcf90195856..820230668ee8 100755 --- a/gnu/usr.bin/perl/perl/t/comp/script.t +++ b/gnu/usr.bin/perl/perl/t/comp/script.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/script.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/script.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/term.t b/gnu/usr.bin/perl/perl/t/comp/term.t index 70b23fd8a6ae..47589f736649 100755 --- a/gnu/usr.bin/perl/perl/t/comp/term.t +++ b/gnu/usr.bin/perl/perl/t/comp/term.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/term.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/term.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  # tests that aren't important enough for base.term diff --git a/gnu/usr.bin/perl/perl/t/io/argv.t b/gnu/usr.bin/perl/perl/t/io/argv.t index 99c593620eee..cc1d6d68ec42 100755 --- a/gnu/usr.bin/perl/perl/t/io/argv.t +++ b/gnu/usr.bin/perl/perl/t/io/argv.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/argv.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/argv.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..5\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/dup.t b/gnu/usr.bin/perl/perl/t/io/dup.t index 8d11eca79973..efa205537108 100755 --- a/gnu/usr.bin/perl/perl/t/io/dup.t +++ b/gnu/usr.bin/perl/perl/t/io/dup.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/dup.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/dup.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/fs.t b/gnu/usr.bin/perl/perl/t/io/fs.t index 1d95cdc3530c..95f85d5572b3 100755 --- a/gnu/usr.bin/perl/perl/t/io/fs.t +++ b/gnu/usr.bin/perl/perl/t/io/fs.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: fs.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:05 $ +# $RCSfile: fs.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:40 $  print "1..22\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/inplace.t b/gnu/usr.bin/perl/perl/t/io/inplace.t index b22afdaa4b98..82cc096fdae4 100755 --- a/gnu/usr.bin/perl/perl/t/io/inplace.t +++ b/gnu/usr.bin/perl/perl/t/io/inplace.t @@ -2,7 +2,7 @@  $^I = '.bak'; -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/inplace.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/inplace.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/pipe.t b/gnu/usr.bin/perl/perl/t/io/pipe.t index 791a9c715f85..d52a4b929326 100755 --- a/gnu/usr.bin/perl/perl/t/io/pipe.t +++ b/gnu/usr.bin/perl/perl/t/io/pipe.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/pipe.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/pipe.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  $| = 1;  print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/print.t b/gnu/usr.bin/perl/perl/t/io/print.t index 11854427410b..38e1dcf827a5 100755 --- a/gnu/usr.bin/perl/perl/t/io/print.t +++ b/gnu/usr.bin/perl/perl/t/io/print.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/print.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/print.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..16\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/tell.t b/gnu/usr.bin/perl/perl/t/io/tell.t index 27e69a0fd7ee..669a176ad274 100755 --- a/gnu/usr.bin/perl/perl/t/io/tell.t +++ b/gnu/usr.bin/perl/perl/t/io/tell.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/tell.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/tell.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $  print "1..13\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/append.t b/gnu/usr.bin/perl/perl/t/op/append.t index 92c6f48e80c4..3bf47989ccbe 100755 --- a/gnu/usr.bin/perl/perl/t/op/append.t +++ b/gnu/usr.bin/perl/perl/t/op/append.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/append.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/append.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/array.t b/gnu/usr.bin/perl/perl/t/op/array.t index 39e05e3fbbb4..708f8b9f885a 100755 --- a/gnu/usr.bin/perl/perl/t/op/array.t +++ b/gnu/usr.bin/perl/perl/t/op/array.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/array.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/array.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  print "1..36\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/auto.t b/gnu/usr.bin/perl/perl/t/op/auto.t index 5301f934d8ed..4e6f65918bf5 100755 --- a/gnu/usr.bin/perl/perl/t/op/auto.t +++ b/gnu/usr.bin/perl/perl/t/op/auto.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/auto.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/auto.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  print "1..34\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/chop.t b/gnu/usr.bin/perl/perl/t/op/chop.t index d691d734105b..86938fb757ba 100755 --- a/gnu/usr.bin/perl/perl/t/op/chop.t +++ b/gnu/usr.bin/perl/perl/t/op/chop.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/chop.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/chop.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/cond.t b/gnu/usr.bin/perl/perl/t/op/cond.t index 054a5ff7f0d7..d9277387f500 100755 --- a/gnu/usr.bin/perl/perl/t/op/cond.t +++ b/gnu/usr.bin/perl/perl/t/op/cond.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/cond.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/cond.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/dbm.t b/gnu/usr.bin/perl/perl/t/op/dbm.t index 23d4d98c9412..f5bd08e15690 100755 --- a/gnu/usr.bin/perl/perl/t/op/dbm.t +++ b/gnu/usr.bin/perl/perl/t/op/dbm.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: dbm.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:02 $ +# $RCSfile: dbm.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:41 $  if (!-r '/usr/include/dbm.h' && !-r '/usr/include/ndbm.h'      && !-r '/usr/include/rpcsvc/dbm.h') { diff --git a/gnu/usr.bin/perl/perl/t/op/delete.t b/gnu/usr.bin/perl/perl/t/op/delete.t index e4e1fea10658..4ebeb5e6f275 100755 --- a/gnu/usr.bin/perl/perl/t/op/delete.t +++ b/gnu/usr.bin/perl/perl/t/op/delete.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/delete.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/delete.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/do.t b/gnu/usr.bin/perl/perl/t/op/do.t index 370012c129b1..247925b0cbdb 100755 --- a/gnu/usr.bin/perl/perl/t/op/do.t +++ b/gnu/usr.bin/perl/perl/t/op/do.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/do.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/do.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $  sub foo1  { diff --git a/gnu/usr.bin/perl/perl/t/op/each.t b/gnu/usr.bin/perl/perl/t/op/each.t index 532d1b01f3f4..578638fd5e37 100755 --- a/gnu/usr.bin/perl/perl/t/op/each.t +++ b/gnu/usr.bin/perl/perl/t/op/each.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/each.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/each.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/eval.t b/gnu/usr.bin/perl/perl/t/op/eval.t index b21b44d8354c..bb3bf1297a22 100755 --- a/gnu/usr.bin/perl/perl/t/op/eval.t +++ b/gnu/usr.bin/perl/perl/t/op/eval.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: eval.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:02 $ +# $RCSfile: eval.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:42 $  print "1..16\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/exec.t b/gnu/usr.bin/perl/perl/t/op/exec.t index 69909f740790..5fb9f43157c7 100755 --- a/gnu/usr.bin/perl/perl/t/op/exec.t +++ b/gnu/usr.bin/perl/perl/t/op/exec.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/exec.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/exec.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  $| = 1;				# flush stdout  print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/exp.t b/gnu/usr.bin/perl/perl/t/op/exp.t index 2195e54067d6..26b1ee671aa6 100755 --- a/gnu/usr.bin/perl/perl/t/op/exp.t +++ b/gnu/usr.bin/perl/perl/t/op/exp.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/exp.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/exp.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/flip.t b/gnu/usr.bin/perl/perl/t/op/flip.t index 74ba5085ac5f..a38a60fbf914 100755 --- a/gnu/usr.bin/perl/perl/t/op/flip.t +++ b/gnu/usr.bin/perl/perl/t/op/flip.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/flip.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/flip.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/fork.t b/gnu/usr.bin/perl/perl/t/op/fork.t index 10b54a2a2c5b..0024a33544d0 100755 --- a/gnu/usr.bin/perl/perl/t/op/fork.t +++ b/gnu/usr.bin/perl/perl/t/op/fork.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/fork.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/fork.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  $| = 1;  print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/glob.t b/gnu/usr.bin/perl/perl/t/op/glob.t index 68b0844cad74..e467249ca4cf 100755 --- a/gnu/usr.bin/perl/perl/t/op/glob.t +++ b/gnu/usr.bin/perl/perl/t/op/glob.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/glob.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/glob.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/goto.t b/gnu/usr.bin/perl/perl/t/op/goto.t index 44ef343201e4..8bd9ace214bb 100755 --- a/gnu/usr.bin/perl/perl/t/op/goto.t +++ b/gnu/usr.bin/perl/perl/t/op/goto.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: goto.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:03 $ +# $RCSfile: goto.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:42 $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/index.t b/gnu/usr.bin/perl/perl/t/op/index.t index 769314b5e37f..a663ec36ad33 100755 --- a/gnu/usr.bin/perl/perl/t/op/index.t +++ b/gnu/usr.bin/perl/perl/t/op/index.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/index.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/index.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..20\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/int.t b/gnu/usr.bin/perl/perl/t/op/int.t index 09434b8675a6..1a5a2a023fdb 100755 --- a/gnu/usr.bin/perl/perl/t/op/int.t +++ b/gnu/usr.bin/perl/perl/t/op/int.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/int.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/int.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/join.t b/gnu/usr.bin/perl/perl/t/op/join.t index a6678e979011..d79b341a1345 100755 --- a/gnu/usr.bin/perl/perl/t/op/join.t +++ b/gnu/usr.bin/perl/perl/t/op/join.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/join.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/join.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/list.t b/gnu/usr.bin/perl/perl/t/op/list.t index 52b2347bfd30..850709da569c 100755 --- a/gnu/usr.bin/perl/perl/t/op/list.t +++ b/gnu/usr.bin/perl/perl/t/op/list.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/list.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/list.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..27\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/local.t b/gnu/usr.bin/perl/perl/t/op/local.t index 67396e7cddeb..a962f44533c4 100755 --- a/gnu/usr.bin/perl/perl/t/op/local.t +++ b/gnu/usr.bin/perl/perl/t/op/local.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/local.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/local.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  print "1..20\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/magic.t b/gnu/usr.bin/perl/perl/t/op/magic.t index 1f47a9936ace..e3ae1045a10a 100755 --- a/gnu/usr.bin/perl/perl/t/op/magic.t +++ b/gnu/usr.bin/perl/perl/t/op/magic.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/magic.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/magic.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $  $| = 1;		# command buffering diff --git a/gnu/usr.bin/perl/perl/t/op/mkdir.t b/gnu/usr.bin/perl/perl/t/op/mkdir.t index 0290ed4e5bbc..17660b378ef6 100755 --- a/gnu/usr.bin/perl/perl/t/op/mkdir.t +++ b/gnu/usr.bin/perl/perl/t/op/mkdir.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/mkdir.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/mkdir.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..7\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/oct.t b/gnu/usr.bin/perl/perl/t/op/oct.t index 9322cf0e73e1..f26ddbe8d984 100755 --- a/gnu/usr.bin/perl/perl/t/op/oct.t +++ b/gnu/usr.bin/perl/perl/t/op/oct.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/oct.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/oct.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/ord.t b/gnu/usr.bin/perl/perl/t/op/ord.t index 9d319882d4fe..e766c85bfbc9 100755 --- a/gnu/usr.bin/perl/perl/t/op/ord.t +++ b/gnu/usr.bin/perl/perl/t/op/ord.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/ord.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/ord.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/pack.t b/gnu/usr.bin/perl/perl/t/op/pack.t index 1dfaddf370ef..90faade78df6 100755 --- a/gnu/usr.bin/perl/perl/t/op/pack.t +++ b/gnu/usr.bin/perl/perl/t/op/pack.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/pack.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/pack.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/pat.t b/gnu/usr.bin/perl/perl/t/op/pat.t index ce9f35c6ee66..c6d6a50f8632 100755 --- a/gnu/usr.bin/perl/perl/t/op/pat.t +++ b/gnu/usr.bin/perl/perl/t/op/pat.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: pat.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:01 $ +# $RCSfile: pat.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:43 $  print "1..51\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/push.t b/gnu/usr.bin/perl/perl/t/op/push.t index 3d738acfbda3..105f07f1b945 100755 --- a/gnu/usr.bin/perl/perl/t/op/push.t +++ b/gnu/usr.bin/perl/perl/t/op/push.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/push.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/push.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  @tests = split(/\n/, <<EOF);  0 3,			0 1 2,		3 4 5 6 7 diff --git a/gnu/usr.bin/perl/perl/t/op/range.t b/gnu/usr.bin/perl/perl/t/op/range.t index 6214f9527b99..e40e436df130 100755 --- a/gnu/usr.bin/perl/perl/t/op/range.t +++ b/gnu/usr.bin/perl/perl/t/op/range.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/range.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/range.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/read.t b/gnu/usr.bin/perl/perl/t/op/read.t index 4151e5c6a674..471a2a85a46c 100755 --- a/gnu/usr.bin/perl/perl/t/op/read.t +++ b/gnu/usr.bin/perl/perl/t/op/read.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/read.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/read.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/regexp.t b/gnu/usr.bin/perl/perl/t/op/regexp.t index 58f6666e6949..3b5ea3521d63 100755 --- a/gnu/usr.bin/perl/perl/t/op/regexp.t +++ b/gnu/usr.bin/perl/perl/t/op/regexp.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: regexp.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:03 $ +# $RCSfile: regexp.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:43 $  open(TESTS,'op/re_tests') || open(TESTS,'t/op/re_tests')      || die "Can't open re_tests"; diff --git a/gnu/usr.bin/perl/perl/t/op/repeat.t b/gnu/usr.bin/perl/perl/t/op/repeat.t index 68c61fc6a05e..c06aa00b71c1 100755 --- a/gnu/usr.bin/perl/perl/t/op/repeat.t +++ b/gnu/usr.bin/perl/perl/t/op/repeat.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/repeat.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/repeat.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..19\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/s.t b/gnu/usr.bin/perl/perl/t/op/s.t index 59300209cd39..3a8a3ded864d 100755 --- a/gnu/usr.bin/perl/perl/t/op/s.t +++ b/gnu/usr.bin/perl/perl/t/op/s.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/s.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/s.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $  print "1..51\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/sleep.t b/gnu/usr.bin/perl/perl/t/op/sleep.t index 81113712d343..5ae30739672c 100755 --- a/gnu/usr.bin/perl/perl/t/op/sleep.t +++ b/gnu/usr.bin/perl/perl/t/op/sleep.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/sleep.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/sleep.t,v 1.1.1.1 1994/09/10 06:27:45 gclarkii Exp $  print "1..1\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/sort.t b/gnu/usr.bin/perl/perl/t/op/sort.t index 4692ee4422fb..10a7e375ee16 100755 --- a/gnu/usr.bin/perl/perl/t/op/sort.t +++ b/gnu/usr.bin/perl/perl/t/op/sort.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: sort.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:02 $ +# $RCSfile: sort.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:46 $  print "1..10\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/split.t b/gnu/usr.bin/perl/perl/t/op/split.t index 63bf3c7c76da..89834b39aef9 100755 --- a/gnu/usr.bin/perl/perl/t/op/split.t +++ b/gnu/usr.bin/perl/perl/t/op/split.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/split.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/split.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..12\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/sprintf.t b/gnu/usr.bin/perl/perl/t/op/sprintf.t index cdb4af5a2244..d2760227f0ec 100755 --- a/gnu/usr.bin/perl/perl/t/op/sprintf.t +++ b/gnu/usr.bin/perl/perl/t/op/sprintf.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/sprintf.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/sprintf.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..1\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/stat.t b/gnu/usr.bin/perl/perl/t/op/stat.t index a5db14fd124e..2cfff0170950 100755 --- a/gnu/usr.bin/perl/perl/t/op/stat.t +++ b/gnu/usr.bin/perl/perl/t/op/stat.t @@ -1,6 +1,6 @@  #!./perl -# $RCSfile: stat.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:01 $ +# $RCSfile: stat.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:46 $  print "1..56\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/study.t b/gnu/usr.bin/perl/perl/t/op/study.t index a0fdc4cd273c..7f7ba3576e73 100755 --- a/gnu/usr.bin/perl/perl/t/op/study.t +++ b/gnu/usr.bin/perl/perl/t/op/study.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/study.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/study.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..24\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/substr.t b/gnu/usr.bin/perl/perl/t/op/substr.t index 09f312f83762..1de2da75ba85 100755 --- a/gnu/usr.bin/perl/perl/t/op/substr.t +++ b/gnu/usr.bin/perl/perl/t/op/substr.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/substr.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/substr.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..22\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/time.t b/gnu/usr.bin/perl/perl/t/op/time.t index f8e5545f7b41..e48de9057baa 100755 --- a/gnu/usr.bin/perl/perl/t/op/time.t +++ b/gnu/usr.bin/perl/perl/t/op/time.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/time.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/time.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..5\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/undef.t b/gnu/usr.bin/perl/perl/t/op/undef.t index b4827db0c547..0d263090a380 100755 --- a/gnu/usr.bin/perl/perl/t/op/undef.t +++ b/gnu/usr.bin/perl/perl/t/op/undef.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/undef.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/undef.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..21\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/unshift.t b/gnu/usr.bin/perl/perl/t/op/unshift.t index 53d73883822b..fcdf9e8070ae 100755 --- a/gnu/usr.bin/perl/perl/t/op/unshift.t +++ b/gnu/usr.bin/perl/perl/t/op/unshift.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/unshift.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/unshift.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/vec.t b/gnu/usr.bin/perl/perl/t/op/vec.t index 51344769b6cf..94113edd66ce 100755 --- a/gnu/usr.bin/perl/perl/t/op/vec.t +++ b/gnu/usr.bin/perl/perl/t/op/vec.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/vec.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/vec.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..13\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/write.t b/gnu/usr.bin/perl/perl/t/op/write.t index d17f1951bb76..f1b7fdd0d862 100755 --- a/gnu/usr.bin/perl/perl/t/op/write.t +++ b/gnu/usr.bin/perl/perl/t/op/write.t @@ -1,6 +1,6 @@  #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/write.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/write.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $  print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/tdoio.c b/gnu/usr.bin/perl/perl/tdoio.c index cd5d480bcb80..1bd66a97a726 100644 --- a/gnu/usr.bin/perl/perl/tdoio.c +++ b/gnu/usr.bin/perl/perl/tdoio.c @@ -1,4 +1,4 @@ -/* $RCSfile: tdoio.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:23 $ +/* $RCSfile: tdoio.c,v $$Revision: 1.2.6.1 $$Date: 1998/02/15 16:30:09 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: tdoio.c,v $ + * Revision 1.2.6.1  1998/02/15 16:30:09  jkh + * MFC: security tweak, support for -T and -B flags. + *   * Revision 1.2  1995/05/30 05:03:23  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/toke.c b/gnu/usr.bin/perl/perl/toke.c index 6c7be969c4fe..0e9334fd4c90 100644 --- a/gnu/usr.bin/perl/perl/toke.c +++ b/gnu/usr.bin/perl/perl/toke.c @@ -1,4 +1,4 @@ -/* $RCSfile: toke.c,v $$Revision: 1.2.6.1 $$Date: 1997/08/08 20:54:51 $ +/* $RCSfile: toke.c,v $$Revision: 1.2.6.2 $$Date: 1997/08/27 17:19:19 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: toke.c,v $ + * Revision 1.2.6.2  1997/08/27 17:19:19  joerg + * MFC: rev 1.4, pass all args down to scanident() + *   * Revision 1.2.6.1  1997/08/08 20:54:51  joerg   * MFC: fix buffer overflow condition.   * diff --git a/gnu/usr.bin/perl/perl/usersub.c b/gnu/usr.bin/perl/perl/usersub.c index 8c7cb65c47f6..f49eda39b970 100644 --- a/gnu/usr.bin/perl/perl/usersub.c +++ b/gnu/usr.bin/perl/perl/usersub.c @@ -1,10 +1,13 @@ -/* $RCSfile: usersub.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: usersub.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:27 $   *   *  This file contains stubs for routines that the user may define to   *  set up glue routines for C libraries or to decrypt encrypted scripts   *  for execution.   *   * $Log: usersub.c,v $ + * Revision 1.2  1995/05/30 05:03:27  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:34  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/perl/util.c b/gnu/usr.bin/perl/perl/util.c index ded365a83a13..25c825d202ff 100644 --- a/gnu/usr.bin/perl/perl/util.c +++ b/gnu/usr.bin/perl/perl/util.c @@ -1,4 +1,4 @@ -/* $RCSfile: util.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:28 $ +/* $RCSfile: util.c,v $$Revision: 1.2.6.1 $$Date: 1997/09/16 08:34:32 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: util.c,v $ + * Revision 1.2.6.1  1997/09/16 08:34:32  joerg + * MFC: buffer overflow fix from rev 1.3. + *   * Revision 1.2  1995/05/30 05:03:28  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/perl/util.h b/gnu/usr.bin/perl/perl/util.h index 003e44386010..b3c1db512881 100644 --- a/gnu/usr.bin/perl/perl/util.h +++ b/gnu/usr.bin/perl/perl/util.h @@ -1,4 +1,4 @@ -/* $RCSfile: util.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: util.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:29 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: util.h,v $ + * Revision 1.2  1995/05/30 05:03:29  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:35  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/usub/curses.mus b/gnu/usr.bin/perl/usub/curses.mus index 03269c3415e9..898f7376abd2 100644 --- a/gnu/usr.bin/perl/usub/curses.mus +++ b/gnu/usr.bin/perl/usub/curses.mus @@ -1,6 +1,9 @@ -/* $RCSfile: curses.mus,v $$Revision: 1.1 $$Date: 1995/03/24 04:33:49 $ +/* $RCSfile: curses.mus,v $$Revision: 1.2 $$Date: 1995/04/02 13:11:14 $   *   * $Log: curses.mus,v $ + * Revision 1.2  1995/04/02 13:11:14  bde + * Fix compiler warnings: don't declare enum types as static. + *  # Revision 1.1  1995/03/24  04:33:49  jkh  # Bring back perl/usub as usub/, this time containing an updated curseperl  # which is also installed by default (the reason for which should also be diff --git a/gnu/usr.bin/perl/usub/usersub.c b/gnu/usr.bin/perl/usub/usersub.c index 26fbcbccf62e..786ad2721a97 100644 --- a/gnu/usr.bin/perl/usub/usersub.c +++ b/gnu/usr.bin/perl/usub/usersub.c @@ -1,6 +1,9 @@ -/* $RCSfile: usersub.c,v $$Revision: 1.1 $$Date: 1995/03/24 04:33:54 $ +/* $RCSfile: usersub.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:33 $   *   * $Log: usersub.c,v $ + * Revision 1.2  1995/05/30 05:03:33  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1  1995/03/24  04:33:54  jkh   * Bring back perl/usub as usub/, this time containing an updated curseperl   * which is also installed by default (the reason for which should also be diff --git a/gnu/usr.bin/perl/x2p/EXTERN.h b/gnu/usr.bin/perl/x2p/EXTERN.h index b0bb6d0162fb..cbc5ca6543df 100644 --- a/gnu/usr.bin/perl/x2p/EXTERN.h +++ b/gnu/usr.bin/perl/x2p/EXTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: EXTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: EXTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:35 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: EXTERN.h,v $ + * Revision 1.2  1995/05/30 05:03:35  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/INTERN.h b/gnu/usr.bin/perl/x2p/INTERN.h index d8a8a3e2a349..38ee58f87c94 100644 --- a/gnu/usr.bin/perl/x2p/INTERN.h +++ b/gnu/usr.bin/perl/x2p/INTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: INTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: INTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:36 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: INTERN.h,v $ + * Revision 1.2  1995/05/30 05:03:36  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/a2p.1 b/gnu/usr.bin/perl/x2p/a2p.1 index 58d8c077fafd..45cf80b88a92 100644 --- a/gnu/usr.bin/perl/x2p/a2p.1 +++ b/gnu/usr.bin/perl/x2p/a2p.1 @@ -1,7 +1,11 @@  .rn '' }` -''' $Header: /home/cvs/386BSD/ports/lang/perl/x2p/a2p.man,v 1.1.1.1 1993/08/23 21:30:10 nate Exp $ +''' $Header: /home/ncvs/src/gnu/usr.bin/perl/x2p/a2p.1,v 1.1.1.1 1994/09/10 06:27:55 gclarkii Exp $  '''  -''' $Log: a2p.man,v $ +''' $Log: a2p.1,v $ +''' Revision 1.1.1.1  1994/09/10 06:27:55  gclarkii +''' Initial import of Perl 4.046 bmaked +''' +'''  .\" Revision 1.1.1.1  1993/08/23  21:30:10  nate  .\" PERL!  .\" diff --git a/gnu/usr.bin/perl/x2p/a2p.h b/gnu/usr.bin/perl/x2p/a2p.h index cc59fb7ddf8e..02ce43557b55 100644 --- a/gnu/usr.bin/perl/x2p/a2p.h +++ b/gnu/usr.bin/perl/x2p/a2p.h @@ -1,4 +1,4 @@ -/* $RCSfile: a2p.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ +/* $RCSfile: a2p.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:37 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: a2p.h,v $ + * Revision 1.2  1995/05/30 05:03:37  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:53  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/a2p.y b/gnu/usr.bin/perl/x2p/a2p.y index bc86632dd417..bf15c50be9ef 100644 --- a/gnu/usr.bin/perl/x2p/a2p.y +++ b/gnu/usr.bin/perl/x2p/a2p.y @@ -1,5 +1,5 @@  %{ -/* $RCSfile: a2p.y,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:09 $ +/* $RCSfile: a2p.y,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -7,6 +7,10 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: a2p.y,v $ + * Revision 1.1.1.1  1994/09/10 06:27:53  gclarkii + * Initial import of Perl 4.046 bmaked + * + *   * Revision 1.1.1.1  1993/08/23  21:30:09  nate   * PERL!   * diff --git a/gnu/usr.bin/perl/x2p/a2py.c b/gnu/usr.bin/perl/x2p/a2py.c index fcc196b640f2..1a873591a85d 100644 --- a/gnu/usr.bin/perl/x2p/a2py.c +++ b/gnu/usr.bin/perl/x2p/a2py.c @@ -1,4 +1,4 @@ -/* $RCSfile: a2py.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ +/* $RCSfile: a2py.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:38 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: a2py.c,v $ + * Revision 1.2  1995/05/30 05:03:38  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:53  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/handy.h b/gnu/usr.bin/perl/x2p/handy.h index 1db94d4bfae2..b732e5e8ddc2 100644 --- a/gnu/usr.bin/perl/x2p/handy.h +++ b/gnu/usr.bin/perl/x2p/handy.h @@ -1,4 +1,4 @@ -/* $RCSfile: handy.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: handy.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:40 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: handy.h,v $ + * Revision 1.2  1995/05/30 05:03:40  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/hash.c b/gnu/usr.bin/perl/x2p/hash.c index d1ae8ac44a56..fe1dee0444d9 100644 --- a/gnu/usr.bin/perl/x2p/hash.c +++ b/gnu/usr.bin/perl/x2p/hash.c @@ -1,4 +1,4 @@ -/* $RCSfile: hash.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: hash.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:40 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: hash.c,v $ + * Revision 1.2  1995/05/30 05:03:40  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/hash.h b/gnu/usr.bin/perl/x2p/hash.h index 452321cd557c..ec91d4bfb4b9 100644 --- a/gnu/usr.bin/perl/x2p/hash.h +++ b/gnu/usr.bin/perl/x2p/hash.h @@ -1,4 +1,4 @@ -/* $RCSfile: hash.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: hash.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:42 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: hash.h,v $ + * Revision 1.2  1995/05/30 05:03:42  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/malloc.c b/gnu/usr.bin/perl/x2p/malloc.c index e7fff7f25c0f..f57169d2570b 100644 --- a/gnu/usr.bin/perl/x2p/malloc.c +++ b/gnu/usr.bin/perl/x2p/malloc.c @@ -1,6 +1,9 @@ -/* $RCSfile: malloc.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: malloc.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:43 $   *   * $Log: malloc.c,v $ + * Revision 1.2  1995/05/30 05:03:43  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/s2p b/gnu/usr.bin/perl/x2p/s2p index c110e5ef5720..1af6834c7c42 100755 --- a/gnu/usr.bin/perl/x2p/s2p +++ b/gnu/usr.bin/perl/x2p/s2p @@ -5,9 +5,20 @@ eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'  $bin = '/usr/bin'; -# $RCSfile: s2p,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +# $RCSfile: s2p,v $$Revision: 1.2 $$Date: 1994/10/29 07:14:55 $  #  # $Log: s2p,v $ +# Revision 1.2  1994/10/29 07:14:55  pst +# Test test test!  sigh! +# +# Perl's scripts are still trying to execute perl out of /usr/gnu/bin/perl. +# +# The hack Larry was using for h2ph.1 doesn't work with the new macros, so +# make it a real man page. +# +# Also, we weren't building the .ph files, add them as an afterinstall rule +# in the x2p subdirectory. +#  # Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii  # Initial import of Perl 4.046 bmaked  # diff --git a/gnu/usr.bin/perl/x2p/s2p.1 b/gnu/usr.bin/perl/x2p/s2p.1 index ab74717833fc..f9994e3d434c 100644 --- a/gnu/usr.bin/perl/x2p/s2p.1 +++ b/gnu/usr.bin/perl/x2p/s2p.1 @@ -1,7 +1,11 @@  .rn '' }` -''' $RCSfile: s2p.man,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:10 $ +''' $RCSfile: s2p.1,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $  '''  -''' $Log: s2p.man,v $ +''' $Log: s2p.1,v $ +''' Revision 1.1.1.1  1994/09/10 06:27:53  gclarkii +''' Initial import of Perl 4.046 bmaked +''' +'''  .\" Revision 1.1.1.1  1993/08/23  21:30:10  nate  .\" PERL!  .\" diff --git a/gnu/usr.bin/perl/x2p/str.c b/gnu/usr.bin/perl/x2p/str.c index 4e078a6600fe..f30ca028dea1 100644 --- a/gnu/usr.bin/perl/x2p/str.c +++ b/gnu/usr.bin/perl/x2p/str.c @@ -1,4 +1,4 @@ -/* $RCSfile: str.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: str.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:44 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: str.c,v $ + * Revision 1.2  1995/05/30 05:03:44  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:54  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/str.h b/gnu/usr.bin/perl/x2p/str.h index 642e18e66400..052677e7074e 100644 --- a/gnu/usr.bin/perl/x2p/str.h +++ b/gnu/usr.bin/perl/x2p/str.h @@ -1,4 +1,4 @@ -/* $RCSfile: str.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:55 $ +/* $RCSfile: str.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:45 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: str.h,v $ + * Revision 1.2  1995/05/30 05:03:45  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:55  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/util.c b/gnu/usr.bin/perl/x2p/util.c index 70a6cd7a647f..2ef137bf7dc8 100644 --- a/gnu/usr.bin/perl/x2p/util.c +++ b/gnu/usr.bin/perl/x2p/util.c @@ -1,4 +1,4 @@ -/* $RCSfile: util.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:55 $ +/* $RCSfile: util.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:45 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: util.c,v $ + * Revision 1.2  1995/05/30 05:03:45  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:55  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/perl/x2p/util.h b/gnu/usr.bin/perl/x2p/util.h index 17a689a33bf2..722bbdbd35fc 100644 --- a/gnu/usr.bin/perl/x2p/util.h +++ b/gnu/usr.bin/perl/x2p/util.h @@ -1,4 +1,4 @@ -/* $RCSfile: util.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:46 $ +/* $RCSfile: util.h,v $$Revision: 1.2.6.1 $$Date: 1997/02/23 11:46:32 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: util.h,v $ + * Revision 1.2.6.1  1997/02/23 11:46:32  joerg + * YAMFC (rev 1.3: remove bogus redeclaration of getenv()) + *   * Revision 1.2  1995/05/30 05:03:46  rgrimes   * Remove trailing whitespace.   * diff --git a/gnu/usr.bin/perl/x2p/walk.c b/gnu/usr.bin/perl/x2p/walk.c index c7e5e4445bf5..d1ac02e19727 100644 --- a/gnu/usr.bin/perl/x2p/walk.c +++ b/gnu/usr.bin/perl/x2p/walk.c @@ -1,4 +1,4 @@ -/* $RCSfile: walk.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:55 $ +/* $RCSfile: walk.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:47 $   *   *    Copyright (c) 1991, Larry Wall   * @@ -6,6 +6,9 @@   *    License or the Artistic License, as specified in the README file.   *   * $Log: walk.c,v $ + * Revision 1.2  1995/05/30 05:03:47  rgrimes + * Remove trailing whitespace. + *   * Revision 1.1.1.1  1994/09/10  06:27:55  gclarkii   * Initial import of Perl 4.046 bmaked   * diff --git a/gnu/usr.bin/rcs/CREDITS b/gnu/usr.bin/rcs/CREDITS index 6eca1b9c68bb..8675fb3bac8b 100644 --- a/gnu/usr.bin/rcs/CREDITS +++ b/gnu/usr.bin/rcs/CREDITS @@ -21,4 +21,4 @@ Brendan Kehoe of Cygnus Support suggested rlog's -N option.  Paul D. Smith of Data General suggested improvements in option  and error processing.  Adam Hammer of Purdue QAed. -$Id: CREDITS,v 1.1 1993/11/03 17:50:39 eggert Exp $ +$Id: CREDITS,v 1.2 1995/10/28 21:48:56 peter Exp $ diff --git a/gnu/usr.bin/rcs/NEWS b/gnu/usr.bin/rcs/NEWS index 62b7c2b0b814..d7d08212c14f 100644 --- a/gnu/usr.bin/rcs/NEWS +++ b/gnu/usr.bin/rcs/NEWS @@ -1,6 +1,6 @@  Recent changes to RCS (and possible future changes) -	$Id: NEWS,v 1.5 1995/06/16 06:19:24 eggert Exp $ +	$Id: NEWS,v 1.2 1995/10/28 21:48:59 peter Exp $  	Copyright 1991, 1992, 1993, 1994, 1995 Paul Eggert  	Distributed under license by the Free Software Foundation, Inc. diff --git a/gnu/usr.bin/rcs/REFS b/gnu/usr.bin/rcs/REFS index eaf96a5a1f2b..dc33becec8f8 100644 --- a/gnu/usr.bin/rcs/REFS +++ b/gnu/usr.bin/rcs/REFS @@ -2,7 +2,7 @@ Here are references to RCS and related free software and documentation.  Some of this information changes often; see the Frequently Asked Questions  for more up-to-date references. -	$Id: REFS,v 1.1 1995/06/16 06:19:24 eggert Exp $ +	$Id: REFS,v 1.2 1995/10/28 21:49:02 peter Exp $  Frequently Asked Questions (FAQs) diff --git a/gnu/usr.bin/rcs/ci/ci.1 b/gnu/usr.bin/rcs/ci/ci.1 index b11cf8d68b4e..bb04f11f16ac 100644 --- a/gnu/usr.bin/rcs/ci/ci.1 +++ b/gnu/usr.bin/rcs/ci/ci.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: ci.1,v 1.2 1995/10/28 21:49:06 peter Exp $ +.Id $Id: ci.1,v 1.3 1996/02/12 04:56:44 mpp Exp $  .ds i \&\s-1ISO\s0  .ds r \&\s-1RCS\s0  .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/ci/ci.c b/gnu/usr.bin/rcs/ci/ci.c index 701b15cde1d0..0556566d6e65 100644 --- a/gnu/usr.bin/rcs/ci/ci.c +++ b/gnu/usr.bin/rcs/ci/ci.c @@ -274,7 +274,7 @@ static struct hshentry newdelta;	/* new delta to be inserted	*/  static struct stat workstat;  static struct Symrev *assoclst, **nextassoc; -mainProg(ciId, "ci", "$Id: ci.c,v 1.3 1995/10/28 21:49:08 peter Exp $") +mainProg(ciId, "ci", "$Id: ci.c,v 1.4 1995/10/29 22:05:59 peter Exp $")  {  	static char const cmdusage[] =  		"\nci usage: ci -{fIklMqru}[rev] -d[date] -mmsg -{nN}name -sstate -ttext -T -Vn -wwho -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/co/co.1 b/gnu/usr.bin/rcs/co/co.1 index 8d0a6e70d5e8..82b1aad778ec 100644 --- a/gnu/usr.bin/rcs/co/co.1 +++ b/gnu/usr.bin/rcs/co/co.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: co.1,v 5.13 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: co.1,v 1.3 1995/10/28 21:49:11 peter Exp $  .ds i \&\s-1ISO\s0  .ds r \&\s-1RCS\s0  .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/co/co.c b/gnu/usr.bin/rcs/co/co.c index 9dbe8f360c90..b588572cec23 100644 --- a/gnu/usr.bin/rcs/co/co.c +++ b/gnu/usr.bin/rcs/co/co.c @@ -191,7 +191,7 @@ static struct hshentries *gendeltas;	/* deltas to be generated	*/  static struct hshentry *targetdelta;	/* final delta to be generated	*/  static struct stat workstat; -mainProg(coId, "co", "$Id: co.c,v 1.6 1995/10/29 22:06:03 peter Exp $") +mainProg(coId, "co", "$Id: co.c,v 1.6.2.1 1997/08/22 07:01:29 peter Exp $")  {  	static char const cmdusage[] =  		"\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/doc/rcs.ms b/gnu/usr.bin/rcs/doc/rcs.ms index 1c908100c5c0..856a6fc3fee8 100644 --- a/gnu/usr.bin/rcs/doc/rcs.ms +++ b/gnu/usr.bin/rcs/doc/rcs.ms @@ -18,7 +18,7 @@  .de Id  .ND \\$4  .. -.Id $Id: rcs.ms,v 5.4 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: rcs.ms,v 1.2 1995/10/28 21:49:15 peter Exp $  .RP  .TL  RCS\*-A System for Version Control diff --git a/gnu/usr.bin/rcs/ident/ident.1 b/gnu/usr.bin/rcs/ident/ident.1 index 33c10eb8126d..99fdc356c1c0 100644 --- a/gnu/usr.bin/rcs/ident/ident.1 +++ b/gnu/usr.bin/rcs/ident/ident.1 @@ -3,7 +3,7 @@  .ds Dt \\$4  .ds iD \\$3 \\$4 \\$5 \\$6 \\$7  .. -.Id $Id: ident.1,v 5.4 1993/11/09 17:40:15 eggert Exp $ +.Id $Id: ident.1,v 1.2 1995/10/28 21:49:18 peter Exp $  .ds r \&\s-1RCS\s0  .ds u \&\s-1UTC\s0  .if n .ds - \%-- diff --git a/gnu/usr.bin/rcs/ident/ident.c b/gnu/usr.bin/rcs/ident/ident.c index 2d50e7727ec2..3d2f0a169d31 100644 --- a/gnu/usr.bin/rcs/ident/ident.c +++ b/gnu/usr.bin/rcs/ident/ident.c @@ -102,7 +102,7 @@ static int match P((FILE*));  static int scanfile P((FILE*,char const*,int));  static void reportError P((char const*)); -mainProg(identId, "ident", "$Id: ident.c,v 1.3 1995/10/28 21:49:19 peter Exp $") +mainProg(identId, "ident", "$Id: ident.c,v 1.4 1995/10/29 22:06:07 peter Exp $")  /*  Ident searches the named files for all occurrences   *  of the pattern $@: text $ where @ is a keyword.   */ diff --git a/gnu/usr.bin/rcs/lib/conf.h b/gnu/usr.bin/rcs/lib/conf.h index b1d404a9ea68..1a7cf76e82f7 100644 --- a/gnu/usr.bin/rcs/lib/conf.h +++ b/gnu/usr.bin/rcs/lib/conf.h @@ -1,6 +1,6 @@  /* RCS compile-time configuration */ -	/* $Id: conf.h,v 1.4 1995/10/28 21:49:25 peter Exp $ */ +	/* $Id: conf.h,v 1.5 1995/10/29 08:35:51 peter Exp $ */  /*   * This file is generated automatically. diff --git a/gnu/usr.bin/rcs/lib/maketime.c b/gnu/usr.bin/rcs/lib/maketime.c index 0f9892604371..f657179ca603 100644 --- a/gnu/usr.bin/rcs/lib/maketime.c +++ b/gnu/usr.bin/rcs/lib/maketime.c @@ -43,7 +43,7 @@ Report problems and direct all questions to:  #include "maketime.h"  char const maketId[] -  = "$Id: maketime.c,v 1.3 1995/10/28 21:49:29 peter Exp $"; +  = "$Id: maketime.c,v 1.4 1995/12/01 08:26:33 jkh Exp $";  static int isleap P((int));  static int month_days P((struct tm const*)); diff --git a/gnu/usr.bin/rcs/lib/merger.c b/gnu/usr.bin/rcs/lib/merger.c index fd36d26ae31e..7408f7ad0ea7 100644 --- a/gnu/usr.bin/rcs/lib/merger.c +++ b/gnu/usr.bin/rcs/lib/merger.c @@ -28,7 +28,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(mergerId, "$Id: merger.c,v 1.7 1995/06/16 06:19:24 eggert Exp $") +libId(mergerId, "$Id: merger.c,v 1.2 1995/10/28 21:49:31 peter Exp $")  	static char const *normalize_arg P((char const*,char**));  	static char const * diff --git a/gnu/usr.bin/rcs/lib/partime.c b/gnu/usr.bin/rcs/lib/partime.c index 4246566d766b..d19f0813ffe8 100644 --- a/gnu/usr.bin/rcs/lib/partime.c +++ b/gnu/usr.bin/rcs/lib/partime.c @@ -46,7 +46,7 @@ Report problems and direct all questions to:  #include "partime.h"  char const partimeId[] -  = "$Id: partime.c,v 5.13 1995/06/16 06:19:24 eggert Exp $"; +  = "$Id: partime.c,v 1.3 1995/10/28 21:49:33 peter Exp $";  /* Lookup tables for names of months, weekdays, time zones.  */ diff --git a/gnu/usr.bin/rcs/lib/rcsbase.h b/gnu/usr.bin/rcs/lib/rcsbase.h index 6d94799456ca..b7bf8ec9152b 100644 --- a/gnu/usr.bin/rcs/lib/rcsbase.h +++ b/gnu/usr.bin/rcs/lib/rcsbase.h @@ -1,6 +1,6 @@  /* RCS common definitions and data structures */ -#define RCSBASE "$Id: rcsbase.h,v 1.6 1995/10/29 22:06:10 peter Exp $" +#define RCSBASE "$Id: rcsbase.h,v 1.6.2.1 1997/08/22 07:01:34 peter Exp $"  /* Copyright 1982, 1988, 1989 Walter Tichy     Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert diff --git a/gnu/usr.bin/rcs/lib/rcsedit.c b/gnu/usr.bin/rcs/lib/rcsedit.c index be7e799c0fc4..eb6ecf7c7066 100644 --- a/gnu/usr.bin/rcs/lib/rcsedit.c +++ b/gnu/usr.bin/rcs/lib/rcsedit.c @@ -201,7 +201,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(editId, "$Id: rcsedit.c,v 1.6 1995/10/29 22:06:12 peter Exp $") +libId(editId, "$Id: rcsedit.c,v 1.6.2.1 1997/08/22 07:01:39 peter Exp $")  static void editEndsPrematurely P((void)) exiting;  static void editLineNumberOverflow P((void)) exiting; diff --git a/gnu/usr.bin/rcs/lib/rcsfcmp.c b/gnu/usr.bin/rcs/lib/rcsfcmp.c index c9cef573bf16..0ee18a1586aa 100644 --- a/gnu/usr.bin/rcs/lib/rcsfcmp.c +++ b/gnu/usr.bin/rcs/lib/rcsfcmp.c @@ -118,7 +118,7 @@ Report problems and direct all questions to:  #include  "rcsbase.h" -libId(fcmpId, "$Id: rcsfcmp.c,v 1.3 1995/10/28 21:49:38 peter Exp $") +libId(fcmpId, "$Id: rcsfcmp.c,v 1.4 1995/10/29 22:06:15 peter Exp $")  	static int discardkeyval P((int,RILE*));  	static int diff --git a/gnu/usr.bin/rcs/lib/rcsfnms.c b/gnu/usr.bin/rcs/lib/rcsfnms.c index 1c0426edc8fd..fdc7435b2056 100644 --- a/gnu/usr.bin/rcs/lib/rcsfnms.c +++ b/gnu/usr.bin/rcs/lib/rcsfnms.c @@ -177,7 +177,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(fnmsId, "$Id: rcsfnms.c,v 1.4.2.1 1997/08/19 11:24:17 peter Exp $") +libId(fnmsId, "$Id: rcsfnms.c,v 1.4.2.2 1997/08/22 07:01:42 peter Exp $")  static char const *bindex P((char const*,int));  static int fin2open P((char const*, size_t, char const*, size_t, char const*, size_t, RILE*(*)P((struct buf*,struct stat*,int)), int)); diff --git a/gnu/usr.bin/rcs/lib/rcsgen.c b/gnu/usr.bin/rcs/lib/rcsgen.c index 0c8e5c0e4d03..13270aa55a38 100644 --- a/gnu/usr.bin/rcs/lib/rcsgen.c +++ b/gnu/usr.bin/rcs/lib/rcsgen.c @@ -140,7 +140,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(genId, "$Id: rcsgen.c,v 1.3 1995/10/28 21:49:41 peter Exp $") +libId(genId, "$Id: rcsgen.c,v 1.4 1995/10/29 22:06:21 peter Exp $")  int interactiveflag;  /* Should we act as if stdin is a tty?  */  struct buf curlogbuf;  /* buffer for current log message */ diff --git a/gnu/usr.bin/rcs/lib/rcskeep.c b/gnu/usr.bin/rcs/lib/rcskeep.c index e759e8dc8c99..a61fbf4b9ccd 100644 --- a/gnu/usr.bin/rcs/lib/rcskeep.c +++ b/gnu/usr.bin/rcs/lib/rcskeep.c @@ -98,7 +98,7 @@ Report problems and direct all questions to:  #include  "rcsbase.h" -libId(keepId, "$Id: rcskeep.c,v 1.4 1995/10/29 22:06:23 peter Exp $") +libId(keepId, "$Id: rcskeep.c,v 1.4.2.1 1997/08/22 07:01:44 peter Exp $")  static int badly_terminated P((void));  static int checknum P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcskeys.c b/gnu/usr.bin/rcs/lib/rcskeys.c index 8ca3b5bb2236..6a36649c4efd 100644 --- a/gnu/usr.bin/rcs/lib/rcskeys.c +++ b/gnu/usr.bin/rcs/lib/rcskeys.c @@ -63,7 +63,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(keysId, "$Id: rcskeys.c,v 1.8 1995/10/29 22:06:24 peter Exp $") +libId(keysId, "$Id: rcskeys.c,v 1.8.2.1 1997/08/22 07:01:45 peter Exp $")  char const *Keyword[] = { diff --git a/gnu/usr.bin/rcs/lib/rcslex.c b/gnu/usr.bin/rcs/lib/rcslex.c index 9929dc4f0f92..b3b7f49dacd0 100644 --- a/gnu/usr.bin/rcs/lib/rcslex.c +++ b/gnu/usr.bin/rcs/lib/rcslex.c @@ -168,7 +168,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(lexId, "$Id: rcslex.c,v 1.4 1995/10/28 21:49:46 peter Exp $") +libId(lexId, "$Id: rcslex.c,v 1.5 1995/10/29 22:06:26 peter Exp $")  static char *checkidentifier P((char*,int,int));  static void errsay P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcsmap.c b/gnu/usr.bin/rcs/lib/rcsmap.c index 0345ef82f24d..2eba929ae6e4 100644 --- a/gnu/usr.bin/rcs/lib/rcsmap.c +++ b/gnu/usr.bin/rcs/lib/rcsmap.c @@ -29,7 +29,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(mapId, "$Id: rcsmap.c,v 5.3 1995/06/16 06:19:24 eggert Exp $") +libId(mapId, "$Id: rcsmap.c,v 1.2 1995/10/28 21:49:48 peter Exp $")  /* map of character types */  /* ISO 8859/1 (Latin-1) */ diff --git a/gnu/usr.bin/rcs/lib/rcsrev.c b/gnu/usr.bin/rcs/lib/rcsrev.c index c0d0bda41e3f..9e6fa05c58c7 100644 --- a/gnu/usr.bin/rcs/lib/rcsrev.c +++ b/gnu/usr.bin/rcs/lib/rcsrev.c @@ -105,7 +105,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(revId, "$Id: rcsrev.c,v 1.4 1995/10/29 22:06:29 peter Exp $") +libId(revId, "$Id: rcsrev.c,v 1.5 1995/12/01 08:26:36 jkh Exp $")  static char const *branchtip P((char const*));  static char const *lookupsym P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcssyn.c b/gnu/usr.bin/rcs/lib/rcssyn.c index 35772fe7a1bf..ffbde25a7f9e 100644 --- a/gnu/usr.bin/rcs/lib/rcssyn.c +++ b/gnu/usr.bin/rcs/lib/rcssyn.c @@ -153,7 +153,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(synId, "$Id: rcssyn.c,v 1.3 1995/10/28 21:49:53 peter Exp $") +libId(synId, "$Id: rcssyn.c,v 1.4 1995/10/29 22:06:30 peter Exp $")  static char const *getkeyval P((char const*,enum tokens,int));  static int getdelta P((void)); diff --git a/gnu/usr.bin/rcs/lib/rcstime.c b/gnu/usr.bin/rcs/lib/rcstime.c index a49a8576c51d..4d347ae8cfe8 100644 --- a/gnu/usr.bin/rcs/lib/rcstime.c +++ b/gnu/usr.bin/rcs/lib/rcstime.c @@ -30,7 +30,7 @@ Report problems and direct all questions to:  #include "partime.h"  #include "maketime.h" -libId(rcstimeId, "$Id: rcstime.c,v 1.4 1995/06/16 06:19:24 eggert Exp $") +libId(rcstimeId, "$Id: rcstime.c,v 1.2 1995/10/28 21:49:55 peter Exp $")  static long zone_offset; /* seconds east of UTC, or TM_LOCAL_ZONE */  static int use_zone_offset; /* if zero, use UTC without zone indication */ diff --git a/gnu/usr.bin/rcs/lib/rcsutil.c b/gnu/usr.bin/rcs/lib/rcsutil.c index 34c61e7c7844..d878c4e812b4 100644 --- a/gnu/usr.bin/rcs/lib/rcsutil.c +++ b/gnu/usr.bin/rcs/lib/rcsutil.c @@ -186,7 +186,7 @@ Report problems and direct all questions to:  #include "rcsbase.h" -libId(utilId, "$Id: rcsutil.c,v 1.4 1995/10/29 22:06:32 peter Exp $") +libId(utilId, "$Id: rcsutil.c,v 1.4.2.1 1997/08/22 07:01:47 peter Exp $")  #if !has_memcmp  	int diff --git a/gnu/usr.bin/rcs/merge/merge.1 b/gnu/usr.bin/rcs/merge/merge.1 index 92058cba97c1..583416e7c9e0 100644 --- a/gnu/usr.bin/rcs/merge/merge.1 +++ b/gnu/usr.bin/rcs/merge/merge.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: merge.1,v 1.2 1995/10/28 21:50:04 peter Exp $ +.Id $Id: merge.1,v 1.2.2.1 1998/02/16 18:22:13 jkh Exp $  .ds r \&\s-1RCS\s0  .TH MERGE 1 \*(Dt GNU  .SH NAME diff --git a/gnu/usr.bin/rcs/merge/merge.c b/gnu/usr.bin/rcs/merge/merge.c index 44d33a3d054d..33d658855094 100644 --- a/gnu/usr.bin/rcs/merge/merge.c +++ b/gnu/usr.bin/rcs/merge/merge.c @@ -41,7 +41,7 @@ badoption(a)  } -mainProg(mergeId, "merge", "$Id: merge.c,v 1.8 1995/06/16 06:19:24 eggert Exp $") +mainProg(mergeId, "merge", "$Id: merge.c,v 1.2 1995/10/28 21:50:08 peter Exp $")  {  	register char const *a;  	char const *arg[3], *label[3], *edarg = 0; diff --git a/gnu/usr.bin/rcs/rcs/rcs.1 b/gnu/usr.bin/rcs/rcs/rcs.1 index 38daf8b62588..4e8f6e126ef7 100644 --- a/gnu/usr.bin/rcs/rcs/rcs.1 +++ b/gnu/usr.bin/rcs/rcs/rcs.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcs.1,v 5.13 1995/06/05 08:28:35 eggert Exp $ +.Id $Id: rcs.1,v 1.2 1995/10/28 21:50:11 peter Exp $  .ds r \&\s-1RCS\s0  .if n .ds - \%--  .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcs/rcs.c b/gnu/usr.bin/rcs/rcs/rcs.c index bb51afb51410..04ff22920ad9 100644 --- a/gnu/usr.bin/rcs/rcs/rcs.c +++ b/gnu/usr.bin/rcs/rcs/rcs.c @@ -275,7 +275,7 @@ static struct delrevpair delrev;  static struct hshentry *cuthead, *cuttail, *delstrt;  static struct hshentries *gendeltas; -mainProg(rcsId, "rcs", "$Id: rcs.c,v 1.3 1995/10/28 21:50:13 peter Exp $") +mainProg(rcsId, "rcs", "$Id: rcs.c,v 1.4 1995/10/29 22:06:37 peter Exp $")  {  	static char const cmdusage[] =  		"\nrcs usage: rcs -{ae}logins -Afile -{blu}[rev] -cstring -{iILqTU} -ksubst -mrev:msg -{nN}name[:[rev]] -orange -sstate[:rev] -t[text] -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/rcs/rcsfile.5 b/gnu/usr.bin/rcs/rcs/rcsfile.5 index 5a1929f78335..b33827cba0fa 100644 --- a/gnu/usr.bin/rcs/rcs/rcsfile.5 +++ b/gnu/usr.bin/rcs/rcs/rcsfile.5 @@ -5,7 +5,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcsfile.5in,v 5.6 1995/06/05 08:28:35 eggert Exp $ +.Id $Id: rcsfile.5,v 1.2 1995/10/28 21:50:16 peter Exp $  .ds r \s-1RCS\s0  .if n .ds - \%--  .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcs/rcsintro.1 b/gnu/usr.bin/rcs/rcs/rcsintro.1 index fa970437b518..f6707a533047 100644 --- a/gnu/usr.bin/rcs/rcs/rcsintro.1 +++ b/gnu/usr.bin/rcs/rcs/rcsintro.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcsintro.1,v 5.3 1993/11/03 17:42:27 eggert Exp $ +.Id $Id: rcsintro.1,v 1.2 1995/10/28 21:50:20 peter Exp $  .ds r \&\s-1RCS\s0  .if n .ds - \%--  .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsclean/rcsclean.1 b/gnu/usr.bin/rcs/rcsclean/rcsclean.1 index be58c94ccef8..6fdb9a296884 100644 --- a/gnu/usr.bin/rcs/rcsclean/rcsclean.1 +++ b/gnu/usr.bin/rcs/rcsclean/rcsclean.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcsclean.1,v 1.12 1993/11/03 17:42:27 eggert Exp $ +.Id $Id: rcsclean.1,v 1.2 1995/10/28 21:50:24 peter Exp $  .ds r \&\s-1RCS\s0  .if n .ds - \%--  .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsclean/rcsclean.c b/gnu/usr.bin/rcs/rcsclean/rcsclean.c index 3d8ecd3fe5d9..2c8613b0eb62 100644 --- a/gnu/usr.bin/rcs/rcsclean/rcsclean.c +++ b/gnu/usr.bin/rcs/rcsclean/rcsclean.c @@ -38,7 +38,7 @@ static void cleanup P((void));  static RILE *workptr;  static int exitstatus; -mainProg(rcscleanId, "rcsclean", "$Id: rcsclean.c,v 5.9 1995/06/16 06:19:24 eggert Exp $") +mainProg(rcscleanId, "rcsclean", "$Id: rcsclean.c,v 1.2 1995/10/28 21:50:27 peter Exp $")  {  	static char const usage[] =  		"\nrcsclean: usage: rcsclean -ksubst -{nqru}[rev] -T -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 index 373c3376de72..eaf5328f2639 100644 --- a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 +++ b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcsdiff.1,v 5.5 1993/11/03 17:42:27 eggert Exp $ +.Id $Id: rcsdiff.1,v 1.2 1995/10/28 21:50:32 peter Exp $  .ds r \&\s-1RCS\s0  .if n .ds - \%--  .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c index 9e31541f4554..c90b86f9a5e6 100644 --- a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c +++ b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c @@ -151,7 +151,7 @@ static int exitstatus;  static RILE *workptr;  static struct stat workstat; -mainProg(rcsdiffId, "rcsdiff", "$Id: rcsdiff.c,v 1.4 1995/10/29 22:06:42 peter Exp $") +mainProg(rcsdiffId, "rcsdiff", "$Id: rcsdiff.c,v 1.5 1996/01/20 07:51:25 mpp Exp $")  {      static char const cmdusage[] =  	    "\nrcsdiff usage: rcsdiff -ksubst -q -rrev1 [-rrev2] -Vn -xsuff -zzone [diff options] file ..."; diff --git a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 index be669a9f2a0d..30f76f7100cd 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 +++ b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcsfreeze.1,v 4.4 1990/11/13 15:43:42 hammer Exp $ +.Id $Id: rcsfreeze.1,v 1.2 1995/10/28 21:50:42 peter Exp $  .ds r \s-1RCS\s0  .TH RCSFREEZE 1 \*(Dt GNU  .SH NAME diff --git a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh index d41ba75a84d1..0274c8d0a1ce 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh +++ b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh @@ -2,7 +2,7 @@  # rcsfreeze - assign a symbolic revision number to a configuration of RCS files -#	$Id: rcsfreeze.sh,v 1.4 1996/03/12 23:09:04 wosch Exp $ +#	$Id: rcsfreeze.sh,v 1.4.2.1 1996/11/28 08:08:29 phk Exp $  #       The idea is to run rcsfreeze each time a new version is checked  #       in. A unique symbolic revision number (C_[number], where number diff --git a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 index 96b6a46f0639..fbfb2ff0aec8 100644 --- a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 +++ b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id: rcsmerge.1,v 5.6 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: rcsmerge.1,v 1.2 1995/10/28 21:50:50 peter Exp $  .ds r \&\s-1RCS\s0  .if n .ds - \%--  .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c index a4d9b86c29e9..0953a985c7c4 100644 --- a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c +++ b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c @@ -117,7 +117,7 @@ Report problems and direct all questions to:  static char const co[] = CO; -mainProg(rcsmergeId, "rcsmerge", "$Id: rcsmerge.c,v 1.3 1995/10/28 21:50:52 peter Exp $") +mainProg(rcsmergeId, "rcsmerge", "$Id: rcsmerge.c,v 1.4 1995/10/29 22:06:45 peter Exp $")  {  	static char const cmdusage[] =  		"\nrcsmerge usage: rcsmerge -rrev1 [-rrev2] -ksubst -{pq}[rev] -Vn -xsuff -zzone file"; diff --git a/gnu/usr.bin/rcs/rcstest b/gnu/usr.bin/rcs/rcstest index 47eab4fc1d7b..80ea18e4a2af 100755 --- a/gnu/usr.bin/rcs/rcstest +++ b/gnu/usr.bin/rcs/rcstest @@ -15,7 +15,7 @@  # The current directory and ./RCS must be readable, writable, and searchable. -#	$Id: rcstest,v 5.14 1995/06/16 06:19:24 eggert Exp $ +#	$Id: rcstest,v 1.2 1995/10/28 21:49:04 peter Exp $  #    Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert diff --git a/gnu/usr.bin/rcs/rlog/rlog.1 b/gnu/usr.bin/rcs/rlog/rlog.1 index 953617cecdc8..c8c110386366 100644 --- a/gnu/usr.bin/rcs/rlog/rlog.1 +++ b/gnu/usr.bin/rcs/rlog/rlog.1 @@ -2,7 +2,7 @@  .ds Rv \\$3  .ds Dt \\$4  .. -.Id $Id$ +.Id $Id: rlog.1,v 1.4.2.1 1997/01/26 07:48:21 mpp Exp $  .ds i \&\s-1ISO\s0  .ds r \&\s-1RCS\s0  .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/rlog/rlog.c b/gnu/usr.bin/rcs/rlog/rlog.c index a3e63be982d4..8ab1639c231e 100644 --- a/gnu/usr.bin/rcs/rlog/rlog.c +++ b/gnu/usr.bin/rcs/rlog/rlog.c @@ -218,7 +218,7 @@ static struct rcslockers *lockerlist;  static struct stateattri *statelist; -mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.9 1995/10/29 18:07:04 peter Exp $") +mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.10 1995/10/29 22:06:48 peter Exp $")  {  	static char const cmdusage[] =  		"\nrlog usage: rlog -{bhLNRt} -v[string] -ddates -l[lockers] -r[revs] -sstates -Vn -w[logins] -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh index 5e042bf9b040..271109794d64 100644 --- a/gnu/usr.bin/send-pr/send-pr.sh +++ b/gnu/usr.bin/send-pr/send-pr.sh @@ -20,7 +20,7 @@  # along with GNU GNATS; see the file COPYING.  If not, write to  # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  # -# $Id: send-pr.sh,v 1.6 1996/10/19 21:42:40 joerg Exp $ +# $Id: send-pr.sh,v 1.6.2.1 1998/02/16 18:24:53 jkh Exp $  # The version of this send-pr.  VERSION=3.2 diff --git a/gnu/usr.bin/tar/getdate.y b/gnu/usr.bin/tar/getdate.y index b53e784ca1eb..fca706542d6f 100644 --- a/gnu/usr.bin/tar/getdate.y +++ b/gnu/usr.bin/tar/getdate.y @@ -1,5 +1,5 @@  %{ -/* $Revision: 1.3 $ +/* $Revision: 1.2.8.1 $  **  **  Originally written by Steven M. Bellovin <smb@research.att.com> while  **  at the University of North Carolina at Chapel Hill.  Later tweaked by @@ -98,7 +98,7 @@ extern struct tm	*localtime();  #if	!defined(lint) && !defined(SABER)  static char RCS[] = -	"$Header: /home/ncvs/src/gnu/usr.bin/tar/getdate.y,v 1.3 1998/01/05 11:32:38 danny Exp $"; +	"$Header: /home/ncvs/src/gnu/usr.bin/tar/getdate.y,v 1.2.8.1 1998/02/04 06:53:58 danny Exp $";  #endif	/* !defined(lint) && !defined(SABER) */ diff --git a/gnu/usr.bin/tar/tar.1 b/gnu/usr.bin/tar/tar.1 index 7cb1e62e79f3..9845742c15fe 100644 --- a/gnu/usr.bin/tar/tar.1 +++ b/gnu/usr.bin/tar/tar.1 @@ -4,7 +4,7 @@  .\"	Written by John F. Woods <jfw@jfwhome.funhouse.com>  .\"	Updated by Robert Eckardt <roberte@mep.ruhr-uni-bochum.de>  .\" -.\"	$Id: tar.1,v 1.6.2.3 1998/02/15 17:05:30 steve Exp $ +.\"	$Id: tar.1,v 1.6.2.4 1998/07/20 02:30:06 jkoshy Exp $  .\"  .Dd 25 August 1997  .Os FreeBSD diff --git a/gnu/usr.bin/texinfo/Makefile b/gnu/usr.bin/texinfo/Makefile index f1539d5a2903..8b4839510f00 100644 --- a/gnu/usr.bin/texinfo/Makefile +++ b/gnu/usr.bin/texinfo/Makefile @@ -1,5 +1,5 @@  # -# $Id$ +# $Id: Makefile,v 1.3.6.1 1997/04/11 17:53:54 asami Exp $  #  SUBDIR= libtxi makeinfo info install-info doc diff --git a/gnu/usr.bin/texinfo/Makefile.inc b/gnu/usr.bin/texinfo/Makefile.inc index 5ee8874939a6..74fef6a26f7a 100644 --- a/gnu/usr.bin/texinfo/Makefile.inc +++ b/gnu/usr.bin/texinfo/Makefile.inc @@ -1,4 +1,4 @@ -#	$Id$ +#	$Id: Makefile.inc,v 1.5.2.1 1997/04/11 17:53:54 asami Exp $  TXIDIR=	${.CURDIR}/../../../../contrib/texinfo diff --git a/gnu/usr.bin/texinfo/doc/Makefile b/gnu/usr.bin/texinfo/doc/Makefile index 3416ad3bcb64..eafc599954ff 100644 --- a/gnu/usr.bin/texinfo/doc/Makefile +++ b/gnu/usr.bin/texinfo/doc/Makefile @@ -1,4 +1,4 @@ -#	$Id$ +#	$Id: Makefile,v 1.3.2.1 1997/04/11 17:53:58 asami Exp $  INFO=	texinfo info info-stnd makeinfo diff --git a/gnu/usr.bin/texinfo/info/Makefile b/gnu/usr.bin/texinfo/info/Makefile index 2ba6f067c55e..3b0c84d38d88 100644 --- a/gnu/usr.bin/texinfo/info/Makefile +++ b/gnu/usr.bin/texinfo/info/Makefile @@ -1,4 +1,4 @@ -#	$Id$ +#	$Id: Makefile,v 1.4.2.1 1997/04/11 17:54:00 asami Exp $  PROG=	info diff --git a/gnu/usr.bin/texinfo/install-info/Makefile b/gnu/usr.bin/texinfo/install-info/Makefile index e233f5db190f..764a8efcc372 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile +++ b/gnu/usr.bin/texinfo/install-info/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.6 1997/04/07 16:52:45 bde Exp $ +#	$Id: Makefile,v 1.6.2.1 1997/08/29 09:11:24 obrien Exp $  PROG=	install-info diff --git a/gnu/usr.bin/texinfo/install-info/install-info.1 b/gnu/usr.bin/texinfo/install-info/install-info.1 index dffddbc26f55..1efde1df6d01 100644 --- a/gnu/usr.bin/texinfo/install-info/install-info.1 +++ b/gnu/usr.bin/texinfo/install-info/install-info.1 @@ -23,7 +23,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$ +.\" $Id: install-info.1,v 1.1.2.1 1997/08/29 09:11:26 obrien Exp $  .\"  .\" .TH install-info 1  .Dd August 29, 1997 diff --git a/gnu/usr.bin/texinfo/libtxi/Makefile b/gnu/usr.bin/texinfo/libtxi/Makefile index 73a371356129..4a339c38cdda 100644 --- a/gnu/usr.bin/texinfo/libtxi/Makefile +++ b/gnu/usr.bin/texinfo/libtxi/Makefile @@ -1,4 +1,4 @@ -#	$Id$ +#	$Id: Makefile,v 1.4 1997/04/07 16:52:49 bde Exp $  LIB=	txi  INTERNALLIB= true diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile b/gnu/usr.bin/texinfo/makeinfo/Makefile index a5398940a71f..104b5e267b0a 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile @@ -1,4 +1,4 @@ -#	$Id$ +#	$Id: Makefile,v 1.3.6.1 1997/04/11 17:54:01 asami Exp $  PROG=	makeinfo  NOMAN=	yes diff --git a/gnu/usr.sbin/Makefile b/gnu/usr.sbin/Makefile index 689a1382ef7e..b557041e8f99 100644 --- a/gnu/usr.sbin/Makefile +++ b/gnu/usr.sbin/Makefile @@ -1,4 +1,4 @@ -#	$Id: Makefile,v 1.3 1996/02/12 14:48:44 wpaul Exp $ +#	$Id: Makefile,v 1.4 1996/04/28 04:06:06 wpaul Exp $  SUBDIR= diff --git a/gnu/usr.sbin/Makefile.inc b/gnu/usr.sbin/Makefile.inc index 1fa8c0e074f6..dce1db05c712 100644 --- a/gnu/usr.sbin/Makefile.inc +++ b/gnu/usr.sbin/Makefile.inc @@ -1,3 +1,3 @@ -#	$Id$ +#	$Id: Makefile.inc,v 1.1 1995/01/31 09:14:03 wpaul Exp $  BINDIR?=	/usr/sbin  | 
