diff options
Diffstat (limited to 'usr.bin/patch')
| -rw-r--r-- | usr.bin/patch/EXTERN.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/INTERN.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/patch/README | 2 | ||||
| -rw-r--r-- | usr.bin/patch/backupfile.c | 4 | ||||
| -rw-r--r-- | usr.bin/patch/backupfile.h | 4 | ||||
| -rw-r--r-- | usr.bin/patch/common.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/config.h | 4 | ||||
| -rw-r--r-- | usr.bin/patch/inp.c | 2 | ||||
| -rw-r--r-- | usr.bin/patch/inp.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/malloc.c | 3 | ||||
| -rw-r--r-- | usr.bin/patch/patch.1 | 2 | ||||
| -rw-r--r-- | usr.bin/patch/patch.c | 4 | ||||
| -rw-r--r-- | usr.bin/patch/patchlevel.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/pch.c | 2 | ||||
| -rw-r--r-- | usr.bin/patch/pch.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/util.c | 2 | ||||
| -rw-r--r-- | usr.bin/patch/util.h | 2 | ||||
| -rw-r--r-- | usr.bin/patch/version.c | 2 | ||||
| -rw-r--r-- | usr.bin/patch/version.h | 2 |
20 files changed, 28 insertions, 21 deletions
diff --git a/usr.bin/patch/EXTERN.h b/usr.bin/patch/EXTERN.h index 509123f085b..6e7b37410ff 100644 --- a/usr.bin/patch/EXTERN.h +++ b/usr.bin/patch/EXTERN.h @@ -1,4 +1,4 @@ -/* $Id: EXTERN.h,v 1.2 1993/08/02 17:55:10 mycroft Exp $ */ +/* $NetBSD: EXTERN.h,v 1.3 1996/09/19 06:27:04 thorpej Exp $ */ #ifdef EXT #undef EXT diff --git a/usr.bin/patch/INTERN.h b/usr.bin/patch/INTERN.h index cf287bdb7cd..1cb3e301442 100644 --- a/usr.bin/patch/INTERN.h +++ b/usr.bin/patch/INTERN.h @@ -1,4 +1,4 @@ -/* $Id: INTERN.h,v 1.2 1993/08/02 17:55:11 mycroft Exp $ */ +/* $NetBSD: INTERN.h,v 1.3 1996/09/19 06:27:05 thorpej Exp $ */ #ifdef EXT #undef EXT diff --git a/usr.bin/patch/Makefile b/usr.bin/patch/Makefile index ded3785db0a..1222179d4c4 100644 --- a/usr.bin/patch/Makefile +++ b/usr.bin/patch/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1993/08/02 17:55:12 mycroft Exp $ +# $NetBSD: Makefile,v 1.3 1996/09/19 06:27:05 thorpej Exp $ PROG= patch SRCS= patch.c pch.c inp.c version.c util.c backupfile.c diff --git a/usr.bin/patch/README b/usr.bin/patch/README index 5bd4744802a..9b565c4fc84 100644 --- a/usr.bin/patch/README +++ b/usr.bin/patch/README @@ -1,3 +1,5 @@ + $NetBSD: README,v 1.2 1996/09/19 06:27:06 thorpej Exp $ + this version modified to fit in with the 386bsd release. this isn't gnu software, so we're not obligated to give you the original sources -- if you want them, get them diff --git a/usr.bin/patch/backupfile.c b/usr.bin/patch/backupfile.c index e871afe6180..2d1b268b119 100644 --- a/usr.bin/patch/backupfile.c +++ b/usr.bin/patch/backupfile.c @@ -1,3 +1,5 @@ +/* $NetBSD: backupfile.c,v 1.4 1996/09/19 06:27:07 thorpej Exp $ */ + /* backupfile.c -- make Emacs style backup file names Copyright (C) 1990 Free Software Foundation, Inc. @@ -12,7 +14,7 @@ Some algorithms adapted from GNU Emacs. */ #ifndef lint -static char rcsid[] = "$Id: backupfile.c,v 1.3 1994/12/24 17:30:13 cgd Exp $"; +static char rcsid[] = "$NetBSD: backupfile.c,v 1.4 1996/09/19 06:27:07 thorpej Exp $"; #endif /* not lint */ #include <stdio.h> diff --git a/usr.bin/patch/backupfile.h b/usr.bin/patch/backupfile.h index 3a2d5bc96ef..72ea4c6ddd1 100644 --- a/usr.bin/patch/backupfile.h +++ b/usr.bin/patch/backupfile.h @@ -1,3 +1,5 @@ +/* $NetBSD: backupfile.h,v 1.3 1996/09/19 06:27:08 thorpej Exp $ */ + /* backupfile.h -- declarations for making Emacs style backup file names Copyright (C) 1990 Free Software Foundation, Inc. @@ -7,8 +9,6 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - $Id: backupfile.h,v 1.2 1993/08/02 17:55:14 mycroft Exp $ */ /* When to make backup files. */ diff --git a/usr.bin/patch/common.h b/usr.bin/patch/common.h index c3ff0952627..66096503338 100644 --- a/usr.bin/patch/common.h +++ b/usr.bin/patch/common.h @@ -1,4 +1,4 @@ -/* $Id: common.h,v 1.4 1994/12/24 17:30:18 cgd Exp $ */ +/* $NetBSD: common.h,v 1.5 1996/09/19 06:27:08 thorpej Exp $ */ #define DEBUGGING diff --git a/usr.bin/patch/config.h b/usr.bin/patch/config.h index d047d94957f..8160637452e 100644 --- a/usr.bin/patch/config.h +++ b/usr.bin/patch/config.h @@ -1,3 +1,5 @@ +/* $NetBSD: config.h,v 1.3 1996/09/19 06:27:09 thorpej Exp $ */ + /* config.h * This file was produced by running the config.h.SH script, which * gets its values from config.sh, which is generally produced by @@ -6,8 +8,6 @@ * Feel free to modify any of this as the need arises. Note, however, * that running config.h.SH again will wipe out any changes you've made. * For a more permanent change edit config.sh and rerun config.h.SH. - * - * $Id: config.h,v 1.2 1993/08/02 17:55:15 mycroft Exp $ */ diff --git a/usr.bin/patch/inp.c b/usr.bin/patch/inp.c index d9c45efcaf4..5eedef9cdd1 100644 --- a/usr.bin/patch/inp.c +++ b/usr.bin/patch/inp.c @@ -1,5 +1,5 @@ #ifndef lint -static char rcsid[] = "$Id: inp.c,v 1.2 1993/08/02 17:55:16 mycroft Exp $"; +static char rcsid[] = "$NetBSD: inp.c,v 1.3 1996/09/19 06:27:10 thorpej Exp $"; #endif /* not lint */ #include "EXTERN.h" diff --git a/usr.bin/patch/inp.h b/usr.bin/patch/inp.h index d0eabe4fb6b..52e8697073c 100644 --- a/usr.bin/patch/inp.h +++ b/usr.bin/patch/inp.h @@ -1,4 +1,4 @@ -/* $Id: inp.h,v 1.2 1993/08/02 17:55:17 mycroft Exp $ */ +/* $NetBSD: inp.h,v 1.3 1996/09/19 06:27:10 thorpej Exp $ */ EXT LINENUM input_lines INIT(0); /* how long is input file in lines */ EXT LINENUM last_frozen_line INIT(0); /* how many input lines have been */ diff --git a/usr.bin/patch/malloc.c b/usr.bin/patch/malloc.c index de0f1ba99b6..ae70e4f2b96 100644 --- a/usr.bin/patch/malloc.c +++ b/usr.bin/patch/malloc.c @@ -1,6 +1,7 @@ +/* $NetBSD: malloc.c,v 1.3 1996/09/19 06:27:11 thorpej Exp $ */ + /* * from: @(#)nmalloc.c 1 (Caltech) 2/21/82 - * $Id: malloc.c,v 1.2 1993/08/01 18:10:10 mycroft Exp $ * * U of M Modified: 20 Jun 1983 ACT: strange hacks for Emacs * diff --git a/usr.bin/patch/patch.1 b/usr.bin/patch/patch.1 index 67442a733c7..c3b8d4c3f2b 100644 --- a/usr.bin/patch/patch.1 +++ b/usr.bin/patch/patch.1 @@ -1,4 +1,4 @@ -.\" $Id: patch.1,v 1.3 1996/09/19 06:10:02 thorpej Exp $ -*- nroff -*- +.\" $NetBSD: patch.1,v 1.4 1996/09/19 06:27:12 thorpej Exp $ -*- nroff -*- .rn '' }` .de Sh .br diff --git a/usr.bin/patch/patch.c b/usr.bin/patch/patch.c index 658714e36d6..0faecb883e4 100644 --- a/usr.bin/patch/patch.c +++ b/usr.bin/patch/patch.c @@ -1,3 +1,5 @@ +/* $NetBSD: patch.c,v 1.4 1996/09/19 06:27:13 thorpej Exp $ */ + /* patch - a program to apply diffs to original files * * Copyright 1986, Larry Wall @@ -7,7 +9,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: patch.c,v 1.3 1996/09/19 06:10:04 thorpej Exp $"; +static char rcsid[] = "$NetBSD: patch.c,v 1.4 1996/09/19 06:27:13 thorpej Exp $"; #endif /* not lint */ #include "INTERN.h" diff --git a/usr.bin/patch/patchlevel.h b/usr.bin/patch/patchlevel.h index 510e6fb892f..b66c9cac60e 100644 --- a/usr.bin/patch/patchlevel.h +++ b/usr.bin/patch/patchlevel.h @@ -1,3 +1,3 @@ -/* $Id: patchlevel.h,v 1.2 1993/08/02 17:55:20 mycroft Exp $ */ +/* $NetBSD: patchlevel.h,v 1.3 1996/09/19 06:27:14 thorpej Exp $ */ #define PATCHLEVEL "12u8" diff --git a/usr.bin/patch/pch.c b/usr.bin/patch/pch.c index 3062588e3e6..0cabe87cd9e 100644 --- a/usr.bin/patch/pch.c +++ b/usr.bin/patch/pch.c @@ -1,5 +1,5 @@ #ifndef lint -static char rcsid[] = "$Id: pch.c,v 1.2 1993/08/02 17:55:21 mycroft Exp $"; +static char rcsid[] = "$NetBSD: pch.c,v 1.3 1996/09/19 06:27:14 thorpej Exp $"; #endif /* not lint */ #include "EXTERN.h" diff --git a/usr.bin/patch/pch.h b/usr.bin/patch/pch.h index f892fc3b7c1..25ec924686a 100644 --- a/usr.bin/patch/pch.h +++ b/usr.bin/patch/pch.h @@ -1,4 +1,4 @@ -/* $Id: pch.h,v 1.2 1993/08/02 17:55:22 mycroft Exp $ */ +/* $NetBSD: pch.h,v 1.3 1996/09/19 06:27:15 thorpej Exp $ */ EXT FILE *pfp INIT(Nullfp); /* patch file pointer */ diff --git a/usr.bin/patch/util.c b/usr.bin/patch/util.c index 4755a7fbcdc..9507a666c47 100644 --- a/usr.bin/patch/util.c +++ b/usr.bin/patch/util.c @@ -1,5 +1,5 @@ #ifndef lint -static char rcsid[] = "$Id: util.c,v 1.3 1993/12/07 10:36:16 mycroft Exp $"; +static char rcsid[] = "$NetBSD: util.c,v 1.4 1996/09/19 06:27:16 thorpej Exp $"; #endif /* not lint */ #include "EXTERN.h" diff --git a/usr.bin/patch/util.h b/usr.bin/patch/util.h index 75ede69ce4f..0fd30a6527f 100644 --- a/usr.bin/patch/util.h +++ b/usr.bin/patch/util.h @@ -1,4 +1,4 @@ -/* $Id: util.h,v 1.2 1993/08/02 17:55:25 mycroft Exp $ */ +/* $NetBSD: util.h,v 1.3 1996/09/19 06:27:17 thorpej Exp $ */ /* and for those machine that can't handle a variable argument list */ diff --git a/usr.bin/patch/version.c b/usr.bin/patch/version.c index a4d4f8746e8..9e58802b23e 100644 --- a/usr.bin/patch/version.c +++ b/usr.bin/patch/version.c @@ -1,5 +1,5 @@ #ifndef lint -static char rcsid[] = "$Id: version.c,v 1.2 1993/08/02 17:55:25 mycroft Exp $"; +static char rcsid[] = "$NetBSD: version.c,v 1.3 1996/09/19 06:27:18 thorpej Exp $"; #endif /* not lint */ #include "EXTERN.h" diff --git a/usr.bin/patch/version.h b/usr.bin/patch/version.h index 39e2e8d91bd..102f0805d54 100644 --- a/usr.bin/patch/version.h +++ b/usr.bin/patch/version.h @@ -1,3 +1,3 @@ -/* $Id: version.h,v 1.2 1993/08/02 17:55:26 mycroft Exp $ */ +/* $NetBSD: version.h,v 1.3 1996/09/19 06:27:18 thorpej Exp $ */ void version(); |
