summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-02 18:17:24 +0000
committermycroft <mycroft@NetBSD.org>1993-08-02 18:17:24 +0000
commit52efca41cdf2e89ecb516d71f7a7fd42eb031723 (patch)
treed51313605a5b80e7eb612e8993f20d214f0a48a9
parentaee4b07b8a049bdc57cefcbb82bebeb6f341859a (diff)
Nuke remaining patchkit headers.
-rw-r--r--games/fortune/fortune/fortune.c9
-rw-r--r--lib/libc/stdio/fflush.c9
-rw-r--r--lib/libc/stdio/fseek.c10
-rw-r--r--lib/libc/string/memccpy.c10
-rw-r--r--lib/libm/common_source/floor.c11
-rw-r--r--libexec/telnetd/state.c10
-rw-r--r--sys/arch/i386/stand/fdbootblk.c10
-rw-r--r--usr.bin/man/whatis/whatis.c9
-rw-r--r--usr.sbin/config.old/mkswapconf.c9
-rw-r--r--usr.sbin/config/mkswapconf.c9
-rw-r--r--usr.sbin/kvm_mkdb/nlist.c9
11 files changed, 11 insertions, 94 deletions
diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c
index ebeaf7eb46a..e08fb950755 100644
--- a/games/fortune/fortune/fortune.c
+++ b/games/fortune/fortune/fortune.c
@@ -32,13 +32,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 90001
- * -------------------- ----- ----------------------
- *
- * 29 Sep 92 Terry Lambert Fixed bogus "pat" on NO_REGEX
*/
#ifndef lint
@@ -49,7 +42,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)fortune.c 5.13 (Berkeley) 4/8/91";*/
-static char rcsid[] = "$Id: fortune.c,v 1.5 1993/08/01 18:54:48 mycroft Exp $";
+static char rcsid[] = "$Id: fortune.c,v 1.6 1993/08/02 18:22:46 mycroft Exp $";
#endif /* not lint */
# include <machine/endian.h>
diff --git a/lib/libc/stdio/fflush.c b/lib/libc/stdio/fflush.c
index caa4311b5bd..7aec33a03b5 100644
--- a/lib/libc/stdio/fflush.c
+++ b/lib/libc/stdio/fflush.c
@@ -32,18 +32,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00047
- * -------------------- ----- ----------------------
- *
- * 27 Nov 1992 Dave Rivers Fixed fflush() to use correct flags.
*/
#if defined(LIBC_SCCS) && !defined(lint)
/*static char sccsid[] = "from: @(#)fflush.c 5.1 (Berkeley) 1/20/91";*/
-static char rcsid[] = "$Id: fflush.c,v 1.3 1993/08/01 18:38:01 mycroft Exp $";
+static char rcsid[] = "$Id: fflush.c,v 1.4 1993/08/02 18:22:38 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/errno.h>
diff --git a/lib/libc/stdio/fseek.c b/lib/libc/stdio/fseek.c
index 7206e1c81eb..0f0d8b8374b 100644
--- a/lib/libc/stdio/fseek.c
+++ b/lib/libc/stdio/fseek.c
@@ -32,19 +32,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00109
- * -------------------- ----- ----------------------
- *
- * 02 Mar 93 Branko Lankester Update internal buffer pointer
- *
*/
#if defined(LIBC_SCCS) && !defined(lint)
/*static char sccsid[] = "from: @(#)fseek.c 5.7 (Berkeley) 2/24/91";*/
-static char rcsid[] = "$Id: fseek.c,v 1.3 1993/08/01 18:38:55 mycroft Exp $";
+static char rcsid[] = "$Id: fseek.c,v 1.4 1993/08/02 18:18:06 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/string/memccpy.c b/lib/libc/string/memccpy.c
index 3959457971b..055e294b49c 100644
--- a/lib/libc/string/memccpy.c
+++ b/lib/libc/string/memccpy.c
@@ -29,19 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00109
- * -------------------- ----- ----------------------
- *
- * 01 Mar 93 Tor Egge Fix bogus return value from memccpy()
- *
*/
#if defined(LIBC_SCCS) && !defined(lint)
/*static char sccsid[] = "from: @(#)memccpy.c 5.8 (Berkeley) 5/30/91";*/
-static char rcsid[] = "$Id: memccpy.c,v 1.3 1993/08/01 18:36:34 mycroft Exp $";
+static char rcsid[] = "$Id: memccpy.c,v 1.4 1993/08/02 18:17:59 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
diff --git a/lib/libm/common_source/floor.c b/lib/libm/common_source/floor.c
index 98c015fcaa4..06fd9d56ed3 100644
--- a/lib/libm/common_source/floor.c
+++ b/lib/libm/common_source/floor.c
@@ -29,20 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00068
- * -------------------- ----- ----------------------
- *
- * 17 Dec 1992 Karl Lehenbauer Removed defines for rint() to
- * add it's use in 386BSD.
*/
- static char rcsid[] = "$Header: /cvsroot/src/lib/libm/common_source/Attic/floor.c,v 1.3 1993/08/01 18:34:45 mycroft Exp $";
#ifndef lint
/*static char sccsid[] = "from: @(#)floor.c 5.7 (Berkeley) 10/9/90";*/
-static char rcsid[] = "$Id: floor.c,v 1.3 1993/08/01 18:34:45 mycroft Exp $";
+static char rcsid[] = "$Id: floor.c,v 1.4 1993/08/02 18:17:53 mycroft Exp $";
#endif /* not lint */
#include "mathimpl.h"
diff --git a/libexec/telnetd/state.c b/libexec/telnetd/state.c
index ff80a3c1f3a..b1c3858c482 100644
--- a/libexec/telnetd/state.c
+++ b/libexec/telnetd/state.c
@@ -29,19 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00035
- * -------------------- ----- ----------------------
- *
- * 27 Nov 1992 Felix Gaehtgens Removed KLUDGELINEMODE
- *
*/
#ifndef lint
/*static char sccsid[] = "from: @(#)state.c 5.10 (Berkeley) 3/22/91";*/
-static char rcsid[] = "$Id: state.c,v 1.3 1993/08/01 18:29:13 mycroft Exp $";
+static char rcsid[] = "$Id: state.c,v 1.4 1993/08/02 18:17:46 mycroft Exp $";
#endif /* not lint */
#include "telnetd.h"
diff --git a/sys/arch/i386/stand/fdbootblk.c b/sys/arch/i386/stand/fdbootblk.c
index 1c47d1f03bb..ca547a21397 100644
--- a/sys/arch/i386/stand/fdbootblk.c
+++ b/sys/arch/i386/stand/fdbootblk.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)fdbootblk.c 7.2 (Berkeley) 5/4/91
- * $Id: fdbootblk.c,v 1.4 1993/05/22 08:02:15 cgd Exp $
+ * $Id: fdbootblk.c,v 1.5 1993/08/02 18:17:39 mycroft Exp $
*/
/*
@@ -46,14 +46,6 @@
* execute.
*
* No attempt is made to handle disk errors.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00073
- * -------------------- ----- ----------------------
- *
- * 22 Jan 93 Frank Maclachlan Fixed NOP's to read correct register
- *
*/
/*#include "/sys/i386/isa/isa.h"
#include "/sys/i386/isa/fdreg.h"*/
diff --git a/usr.bin/man/whatis/whatis.c b/usr.bin/man/whatis/whatis.c
index 3b53c6aab15..6c87eb364a2 100644
--- a/usr.bin/man/whatis/whatis.c
+++ b/usr.bin/man/whatis/whatis.c
@@ -29,13 +29,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00005
- * -------------------- ----- ----------------------
- *
- * 20 Aug 92 Andrew Moore Fixed core dump from uninited pointers
*/
#ifndef lint
@@ -46,7 +39,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)whatis.c 5.6 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: whatis.c,v 1.4 1993/08/01 18:11:16 mycroft Exp $";
+static char rcsid[] = "$Id: whatis.c,v 1.5 1993/08/02 18:17:33 mycroft Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.sbin/config.old/mkswapconf.c b/usr.sbin/config.old/mkswapconf.c
index 8bfcba0366a..a923eeea637 100644
--- a/usr.sbin/config.old/mkswapconf.c
+++ b/usr.sbin/config.old/mkswapconf.c
@@ -29,18 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00096
- * -------------------- ----- ----------------------
- *
- * 15 Feb 93 Julian Elischer Allow comments (leading #) in device file
*/
#ifndef lint
/*static char sccsid[] = "from: @(#)mkswapconf.c 5.10 (Berkeley) 7/1/91";*/
-static char rcsid[] = "$Id: mkswapconf.c,v 1.4 1993/08/01 18:00:12 mycroft Exp $";
+static char rcsid[] = "$Id: mkswapconf.c,v 1.5 1993/08/02 18:17:29 mycroft Exp $";
#endif /* not lint */
/*
diff --git a/usr.sbin/config/mkswapconf.c b/usr.sbin/config/mkswapconf.c
index 8bfcba0366a..a923eeea637 100644
--- a/usr.sbin/config/mkswapconf.c
+++ b/usr.sbin/config/mkswapconf.c
@@ -29,18 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00096
- * -------------------- ----- ----------------------
- *
- * 15 Feb 93 Julian Elischer Allow comments (leading #) in device file
*/
#ifndef lint
/*static char sccsid[] = "from: @(#)mkswapconf.c 5.10 (Berkeley) 7/1/91";*/
-static char rcsid[] = "$Id: mkswapconf.c,v 1.4 1993/08/01 18:00:12 mycroft Exp $";
+static char rcsid[] = "$Id: mkswapconf.c,v 1.5 1993/08/02 18:17:29 mycroft Exp $";
#endif /* not lint */
/*
diff --git a/usr.sbin/kvm_mkdb/nlist.c b/usr.sbin/kvm_mkdb/nlist.c
index 431a867b524..267a3d5c31f 100644
--- a/usr.sbin/kvm_mkdb/nlist.c
+++ b/usr.sbin/kvm_mkdb/nlist.c
@@ -29,18 +29,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
- * -------------------- ----- ----------------------
- * CURRENT PATCH LEVEL: 1 00032
- * -------------------- ----- ----------------------
- *
- * 05 Aug 92 David Greenman Fix kernel namelist db create/use
*/
#ifndef lint
/*static char sccsid[] = "from: @(#)nlist.c 5.4 (Berkeley) 4/27/91";*/
-static char rcsid[] = "$Id: nlist.c,v 1.5 1993/08/01 17:59:19 mycroft Exp $";
+static char rcsid[] = "$Id: nlist.c,v 1.6 1993/08/02 18:17:24 mycroft Exp $";
#endif /* not lint */
#include <sys/param.h>