Dummy commit in preparation for import
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Mar 2002 21:50:08 +0000 (21:50 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Mar 2002 21:50:08 +0000 (21:50 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50605 138bc75d-0d04-0410-961f-82ee72b054a4

15 files changed:
zlib/ChangeLog
zlib/adler32.c
zlib/compress.c
zlib/contrib/iostream2/zstream.h
zlib/crc32.c
zlib/deflate.c
zlib/deflate.h
zlib/example.c
zlib/gzio.c
zlib/minigzip.c
zlib/trees.c
zlib/uncompr.c
zlib/zconf.h
zlib/zutil.c
zlib/zutil.h

index b1c1bbd..c787161 100644 (file)
@@ -221,7 +221,7 @@ Changes in 1.0.6 (19 Jan 1998)
 - use _fdopen instead of fdopen for MSC >= 6.0 (Thomas Fanslau)
 - added makelcc.bat for lcc-win32 (Tom St Denis)
 - in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
-- Avoid expanded $Id: ChangeLog,v 1.1 1999/05/04 19:30:26 tromey Exp $. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
+- Avoid expanded $Id: ChangeLog,v 1.2 2001/06/09 20:31:02 aoliva Exp $. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
 - check for unistd.h in configure (for off_t)
 - remove useless check parameter in inflate_blocks_free
 - avoid useless assignment of s->check to itself in inflate_blocks_new
index 16cf9a7..a7fc7d0 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: adler32.c,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #include "zlib.h"
 
index 1cee470..a7406e4 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: compress.c,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #include "zlib.h"
 
index 43d2332..be7829b 100644 (file)
@@ -21,7 +21,7 @@
 
 /*
  * zstream.h - C++ interface to the 'zlib' general purpose compression library
- * $Id: zstream.h 1.1 1997-06-25 12:00:56+02 tyge Exp tyge $
+ * $Id: zstream.h,v 1.1 1999/05/04 19:30:27 tromey Exp $
  */
 
 #include <strstream.h>
index a91101a..aa62556 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: crc32.c,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #include "zlib.h"
 
index 25d5818..7d5ae93 100644 (file)
@@ -47,7 +47,7 @@
  *
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: deflate.c,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #include "deflate.h"
 
index 962676d..8aa1161 100644 (file)
@@ -8,7 +8,7 @@
    subject to change. Applications should only use zlib.h.
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: deflate.h,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #ifndef _DEFLATE_H
 #define _DEFLATE_H
index 8307c84..86b4af2 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: example.c,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #include <stdio.h>
 #include "zlib.h"
index f7c336a..aec5b36 100644 (file)
@@ -5,7 +5,7 @@
  * Compile this file with -DNO_DEFLATE to avoid the compression code.
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: gzio.c,v 1.1 1999/05/04 19:30:26 tromey Exp $ */
 
 #include <stdio.h>
 
index 7215eae..5d8bbac 100644 (file)
@@ -13,7 +13,7 @@
  * or in pipe mode.
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: minigzip.c,v 1.1 1999/05/04 19:30:27 tromey Exp $ */
 
 #include <stdio.h>
 #include "zlib.h"
index f01fb30..fcc1f48 100644 (file)
@@ -29,7 +29,7 @@
  *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: trees.c,v 1.1 1999/05/04 19:30:27 tromey Exp $ */
 
 /* #define GEN_TREES_H */
 
index d103321..af85aba 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: uncompr.c,v 1.1 1999/05/04 19:30:27 tromey Exp $ */
 
 #include "zlib.h"
 
index 6d450fc..f641125 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: zconf.h,v 1.1 1999/05/04 19:30:27 tromey Exp $ */
 
 #ifndef _ZCONF_H
 #define _ZCONF_H
index b3de4e8..14e3ab4 100644 (file)
@@ -3,7 +3,7 @@
  * For conditions of distribution and use, see copyright notice in zlib.h 
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: zutil.c,v 1.1 1999/05/04 19:30:27 tromey Exp $ */
 
 #include "zutil.h"
 
index 6f2cb97..9c01f44 100644 (file)
@@ -8,7 +8,7 @@
    subject to change. Applications should only use zlib.h.
  */
 
-/* @(#) $Id$ */
+/* @(#) $Id: zutil.h,v 1.1 1999/05/04 19:30:27 tromey Exp $ */
 
 #ifndef _Z_UTIL_H
 #define _Z_UTIL_H