Put the original CVS Id strings back in.

This commit is contained in:
gwr 1997-05-13 23:06:27 +00:00
parent 371ce0e795
commit 8304862426
12 changed files with 36 additions and 14 deletions

View File

@ -1,10 +1,12 @@
/* $NetBSD: adler32.c,v 1.2 1996/09/13 00:29:54 cgd Exp $ */
/* $NetBSD: adler32.c,v 1.3 1997/05/13 23:06:27 gwr 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
*/
/* from: Id: adler32.c,v 1.10 1996/05/22 11:52:18 me Exp */
#include "zlib.h"
#define BASE 65521L /* largest prime smaller than 65536 */

View File

@ -1,10 +1,12 @@
/* $NetBSD: compress.c,v 1.2 1996/09/13 00:29:56 cgd Exp $ */
/* $NetBSD: compress.c,v 1.3 1997/05/13 23:06:28 gwr Exp $ */
/* compress.c -- compress a memory buffer
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* from: Id: compress.c,v 1.10 1996/05/23 16:51:12 me Exp */
#include "zlib.h"
/* ===========================================================================

View File

@ -1,10 +1,12 @@
/* $NetBSD: crc32.c,v 1.2 1996/09/13 00:29:57 cgd Exp $ */
/* $NetBSD: crc32.c,v 1.3 1997/05/13 23:06:29 gwr 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
*/
/* from: Id: crc32.c,v 1.8 1996/01/30 21:59:10 me Exp */
#include "zlib.h"
#define local static

View File

@ -1,4 +1,4 @@
/* $NetBSD: deflate.c,v 1.2 1996/09/13 00:29:59 cgd Exp $ */
/* $NetBSD: deflate.c,v 1.3 1997/05/13 23:06:30 gwr Exp $ */
/* deflate.c -- compress data using the deflation algorithm
* Copyright (C) 1995-1996 Jean-loup Gailly.
@ -49,6 +49,8 @@
*
*/
/* from: Id: deflate.c,v 1.15 1996/07/24 13:40:58 me Exp */
#include "deflate.h"
char deflate_copyright[] = " deflate 1.0.4 Copyright 1995-1996 Jean-loup Gailly ";

View File

@ -1,4 +1,4 @@
/* $NetBSD: deflate.h,v 1.2 1996/09/13 00:30:02 cgd Exp $ */
/* $NetBSD: deflate.h,v 1.3 1997/05/13 23:06:31 gwr Exp $ */
/* deflate.h -- internal compression state
* Copyright (C) 1995-1996 Jean-loup Gailly
@ -10,6 +10,8 @@
subject to change. Applications should only use zlib.h.
*/
/* from: Id: deflate.h,v 1.10 1996/07/02 12:41:00 me Exp */
#ifndef _DEFLATE_H
#define _DEFLATE_H

View File

@ -1,10 +1,12 @@
/* $NetBSD: example.c,v 1.3 1997/01/23 14:03:25 mrg Exp $ */
/* $NetBSD: example.c,v 1.4 1997/05/13 23:06:31 gwr Exp $ */
/* example.c -- usage example of the zlib compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* from: Id: example.c,v 1.16 1996/05/23 17:11:28 me Exp */
#include <stdio.h>
#include "zlib.h"

View File

@ -1,10 +1,12 @@
/* $NetBSD: gzio.c,v 1.5 1997/01/23 14:03:27 mrg Exp $ */
/* $NetBSD: gzio.c,v 1.6 1997/05/13 23:06:32 gwr Exp $ */
/* gzio.c -- IO on .gz files
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* from: Id: gzio.c,v 1.14 1996/07/24 13:41:01 me Exp */
#include <stdio.h>
#include "zutil.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: minigzip.c,v 1.4 1997/01/23 14:03:29 mrg Exp $ */
/* $NetBSD: minigzip.c,v 1.5 1997/05/13 23:06:33 gwr Exp $ */
/* minigzip.c -- simulate gzip using the zlib compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
@ -14,6 +14,8 @@
* real thing. On MSDOS, use only on file names without extension
* or in pipe mode.
*/
/* from: Id: minigzip.c,v 1.10 1996/07/24 13:41:04 me Exp */
#include <stdio.h>
#include <string.h>
@ -21,8 +23,6 @@
#include "zlib.h"
#define OF(args) __P(args)
#if defined(MSDOS) || defined(OS2) || defined(WIN32)
# include <fcntl.h>
# include <io.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: trees.c,v 1.2 1996/09/13 00:30:42 cgd Exp $ */
/* $NetBSD: trees.c,v 1.3 1997/05/13 23:06:34 gwr Exp $ */
/* trees.c -- output deflated data using Huffman coding
* Copyright (C) 1995-1996 Jean-loup Gailly
@ -31,6 +31,8 @@
* Addison-Wesley, 1983. ISBN 0-201-06672-6.
*/
/* from: Id: trees.c,v 1.11 1996/07/24 13:41:06 me Exp */
#include "deflate.h"
#ifdef DEBUG

View File

@ -1,10 +1,12 @@
/* $NetBSD: uncompr.c,v 1.2 1996/09/13 00:30:45 cgd Exp $ */
/* $NetBSD: uncompr.c,v 1.3 1997/05/13 23:06:35 gwr Exp $ */
/* uncompr.c -- decompress a memory buffer
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* from: Id: uncompr.c,v 1.8 1996/01/30 21:59:26 me Exp */
#include "zlib.h"
/* ===========================================================================

View File

@ -1,10 +1,12 @@
/* $NetBSD: zutil.c,v 1.2 1996/09/13 00:30:50 cgd Exp $ */
/* $NetBSD: zutil.c,v 1.3 1997/05/13 23:06:36 gwr Exp $ */
/* zutil.c -- target dependent utility functions for the compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* from: Id: zutil.c,v 1.17 1996/07/24 13:41:12 me Exp */
#include <stdio.h>
#include "zutil.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: zutil.h,v 1.2 1996/09/13 00:30:51 cgd Exp $ */
/* $NetBSD: zutil.h,v 1.3 1997/05/13 23:06:36 gwr Exp $ */
/* zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
@ -10,6 +10,8 @@
subject to change. Applications should only use zlib.h.
*/
/* from: Id: zutil.h,v 1.16 1996/07/24 13:41:13 me Exp */
#ifndef _Z_UTIL_H
#define _Z_UTIL_H