summaryrefslogtreecommitdiff
path: root/sys/lib/libz
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-11-07 15:57:54 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-11-07 15:57:54 +0000
commitc045fa729ea8bac9c37fc19b782b5a3859b5a674 (patch)
tree217d789c8c9676e5a6576aa6658269a29afdf711 /sys/lib/libz
parent14848198439b9bf6cae49c22cb363276839eb2f0 (diff)
$OpenBSD$
Diffstat (limited to 'sys/lib/libz')
-rw-r--r--sys/lib/libz/adler32.c2
-rw-r--r--sys/lib/libz/crc32.c2
-rw-r--r--sys/lib/libz/infblock.c2
-rw-r--r--sys/lib/libz/infblock.h2
-rw-r--r--sys/lib/libz/infcodes.c2
-rw-r--r--sys/lib/libz/infcodes.h2
-rw-r--r--sys/lib/libz/inffast.c2
-rw-r--r--sys/lib/libz/inffast.h2
-rw-r--r--sys/lib/libz/inflate.c2
-rw-r--r--sys/lib/libz/inftrees.c2
-rw-r--r--sys/lib/libz/inftrees.h2
-rw-r--r--sys/lib/libz/infutil.c2
-rw-r--r--sys/lib/libz/infutil.h2
-rw-r--r--sys/lib/libz/zconf.h2
-rw-r--r--sys/lib/libz/zlib.h2
-rw-r--r--sys/lib/libz/zutil.h2
16 files changed, 28 insertions, 4 deletions
diff --git a/sys/lib/libz/adler32.c b/sys/lib/libz/adler32.c
index 3a16a40534d..3ed38fd7b09 100644
--- a/sys/lib/libz/adler32.c
+++ b/sys/lib/libz/adler32.c
@@ -1,9 +1,9 @@
+/* $OpenBSD: adler32.c,v 1.2 1997/11/07 15:57:46 niklas Exp $ */
/* adler32.c -- compute the Adler-32 checksum of a data stream
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $Id: adler32.c,v 1.1 1997/02/06 02:56:49 downsj Exp $ */
#include "zlib.h"
diff --git a/sys/lib/libz/crc32.c b/sys/lib/libz/crc32.c
index 002d4961020..88a8cc86dca 100644
--- a/sys/lib/libz/crc32.c
+++ b/sys/lib/libz/crc32.c
@@ -1,9 +1,9 @@
+/* $OpenBSD: crc32.c,v 1.3 1997/11/07 15:57:46 niklas Exp $ */
/* crc32.c -- compute the CRC-32 of a data stream
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $Id: crc32.c,v 1.2 1997/04/02 05:38:47 mickey Exp $ */
#include "zlib.h"
diff --git a/sys/lib/libz/infblock.c b/sys/lib/libz/infblock.c
index a57122a7968..b6f1fab48a3 100644
--- a/sys/lib/libz/infblock.c
+++ b/sys/lib/libz/infblock.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: infblock.c,v 1.3 1997/11/07 15:57:47 niklas Exp $ */
+
/* infblock.c -- interpret and process block types to last block
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/infblock.h b/sys/lib/libz/infblock.h
index 3ecd50cd3a6..0a2c9548044 100644
--- a/sys/lib/libz/infblock.h
+++ b/sys/lib/libz/infblock.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: infblock.h,v 1.2 1997/11/07 15:57:47 niklas Exp $ */
+
/* infblock.h -- header to use infblock.c
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/infcodes.c b/sys/lib/libz/infcodes.c
index 3ae3818a194..f4e7a888e78 100644
--- a/sys/lib/libz/infcodes.c
+++ b/sys/lib/libz/infcodes.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: infcodes.c,v 1.2 1997/11/07 15:57:48 niklas Exp $ */
+
/* infcodes.c -- process literals and length/distance pairs
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/infcodes.h b/sys/lib/libz/infcodes.h
index c2c38df2c06..542cac10d13 100644
--- a/sys/lib/libz/infcodes.h
+++ b/sys/lib/libz/infcodes.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: infcodes.h,v 1.2 1997/11/07 15:57:48 niklas Exp $ */
+
/* infcodes.h -- header to use infcodes.c
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/inffast.c b/sys/lib/libz/inffast.c
index 86eee4a2992..d7d7c7225f7 100644
--- a/sys/lib/libz/inffast.c
+++ b/sys/lib/libz/inffast.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: inffast.c,v 1.2 1997/11/07 15:57:49 niklas Exp $ */
+
/* inffast.c -- process literals and length/distance pairs fast
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/inffast.h b/sys/lib/libz/inffast.h
index 8cc644efb1f..963f6ac4fae 100644
--- a/sys/lib/libz/inffast.h
+++ b/sys/lib/libz/inffast.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: inffast.h,v 1.2 1997/11/07 15:57:49 niklas Exp $ */
+
/* inffast.h -- header to use inffast.c
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/inflate.c b/sys/lib/libz/inflate.c
index 74cc69c8684..3f9420fe682 100644
--- a/sys/lib/libz/inflate.c
+++ b/sys/lib/libz/inflate.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: inflate.c,v 1.2 1997/11/07 15:57:49 niklas Exp $ */
+
/* inflate.c -- zlib interface to inflate modules
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/inftrees.c b/sys/lib/libz/inftrees.c
index 6f00d8cfc64..ab872d65fdc 100644
--- a/sys/lib/libz/inftrees.c
+++ b/sys/lib/libz/inftrees.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: inftrees.c,v 1.5 1997/11/07 15:57:50 niklas Exp $ */
+
/* inftrees.c -- generate Huffman trees for efficient decoding
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/inftrees.h b/sys/lib/libz/inftrees.h
index 1991804a4ef..5d0138eaa19 100644
--- a/sys/lib/libz/inftrees.h
+++ b/sys/lib/libz/inftrees.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: inftrees.h,v 1.3 1997/11/07 15:57:50 niklas Exp $ */
+
/* inftrees.h -- header to use inftrees.c
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/infutil.c b/sys/lib/libz/infutil.c
index eb21199c350..67ce0b0a1be 100644
--- a/sys/lib/libz/infutil.c
+++ b/sys/lib/libz/infutil.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: infutil.c,v 1.2 1997/11/07 15:57:51 niklas Exp $ */
+
/* inflate_util.c -- data and routines common to blocks and codes
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/infutil.h b/sys/lib/libz/infutil.h
index 702cd290c37..1518e34188f 100644
--- a/sys/lib/libz/infutil.h
+++ b/sys/lib/libz/infutil.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: infutil.h,v 1.2 1997/11/07 15:57:51 niklas Exp $ */
+
/* infutil.h -- types and macros common to blocks and codes
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
diff --git a/sys/lib/libz/zconf.h b/sys/lib/libz/zconf.h
index e574a7d4a1a..e8770223a18 100644
--- a/sys/lib/libz/zconf.h
+++ b/sys/lib/libz/zconf.h
@@ -1,9 +1,9 @@
+/* $OpenBSD: zconf.h,v 1.2 1997/11/07 15:57:52 niklas Exp $ */
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $Id: zconf.h,v 1.1 1997/02/06 02:56:55 downsj Exp $ */
#ifndef _ZCONF_H
#define _ZCONF_H
diff --git a/sys/lib/libz/zlib.h b/sys/lib/libz/zlib.h
index 337fe9fe8a3..a7b993e6584 100644
--- a/sys/lib/libz/zlib.h
+++ b/sys/lib/libz/zlib.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: zlib.h,v 1.2 1997/11/07 15:57:52 niklas Exp $ */
+
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.0.4, Jul 24th, 1996.
diff --git a/sys/lib/libz/zutil.h b/sys/lib/libz/zutil.h
index 479ce78e609..c6e379f2f85 100644
--- a/sys/lib/libz/zutil.h
+++ b/sys/lib/libz/zutil.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: zutil.h,v 1.4 1997/11/07 15:57:53 niklas Exp $ */
/* zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
@@ -8,7 +9,6 @@
subject to change. Applications should only use zlib.h.
*/
-/* $Id: zutil.h,v 1.3 1997/07/18 01:08:02 mickey Exp $ */
#ifndef _Z_UTIL_H
#define _Z_UTIL_H