summaryrefslogtreecommitdiff
path: root/lib/zlib
diff options
context:
space:
mode:
Diffstat (limited to 'lib/zlib')
-rw-r--r--lib/zlib/include/deflate.h2
-rw-r--r--lib/zlib/include/zconf.h2
-rw-r--r--lib/zlib/include/zutil.h2
-rw-r--r--lib/zlib/src/adler32.c2
-rw-r--r--lib/zlib/src/compress.c2
-rw-r--r--lib/zlib/src/crc32.c2
-rw-r--r--lib/zlib/src/deflate.c2
-rw-r--r--lib/zlib/src/gzio.c2
-rw-r--r--lib/zlib/src/trees.c2
-rw-r--r--lib/zlib/src/uncompr.c2
-rw-r--r--lib/zlib/src/zutil.c2
11 files changed, 0 insertions, 22 deletions
diff --git a/lib/zlib/include/deflate.h b/lib/zlib/include/deflate.h
index d4e5825..4eb5e10 100644
--- a/lib/zlib/include/deflate.h
+++ b/lib/zlib/include/deflate.h
@@ -8,8 +8,6 @@
subject to change. Applications should only use zlib.h.
*/
-/* @(#) $Id: deflate.h,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#ifndef DEFLATE_H
#define DEFLATE_H
diff --git a/lib/zlib/include/zconf.h b/lib/zlib/include/zconf.h
index ffc45db..1731ebf 100644
--- a/lib/zlib/include/zconf.h
+++ b/lib/zlib/include/zconf.h
@@ -3,8 +3,6 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* @(#) $Id: zconf.h,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#ifndef ZCONF_H
#define ZCONF_H
diff --git a/lib/zlib/include/zutil.h b/lib/zlib/include/zutil.h
index 0f5f432..51225ab 100644
--- a/lib/zlib/include/zutil.h
+++ b/lib/zlib/include/zutil.h
@@ -8,8 +8,6 @@
subject to change. Applications should only use zlib.h.
*/
-/* @(#) $Id: zutil.h,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#ifndef ZUTIL_H
#define ZUTIL_H
diff --git a/lib/zlib/src/adler32.c b/lib/zlib/src/adler32.c
index c9137cc..e151bd7 100644
--- a/lib/zlib/src/adler32.c
+++ b/lib/zlib/src/adler32.c
@@ -3,8 +3,6 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* @(#) $Id: adler32.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#define ZLIB_INTERNAL
#include "zlib.h"
diff --git a/lib/zlib/src/compress.c b/lib/zlib/src/compress.c
index 6c8942e..9bae035 100644
--- a/lib/zlib/src/compress.c
+++ b/lib/zlib/src/compress.c
@@ -3,8 +3,6 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* @(#) $Id: compress.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#define ZLIB_INTERNAL
#include "zlib.h"
diff --git a/lib/zlib/src/crc32.c b/lib/zlib/src/crc32.c
index 26a3456..c066dd8 100644
--- a/lib/zlib/src/crc32.c
+++ b/lib/zlib/src/crc32.c
@@ -9,8 +9,6 @@
* factor of two increase in speed on a Power PC G4 (PPC7455) using gcc -O3.
*/
-/* @(#) $Id: crc32.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
/*
Note on the use of DYNAMIC_CRC_TABLE: there is no mutex or semaphore
protection on the static variables used to control the first-use generation
diff --git a/lib/zlib/src/deflate.c b/lib/zlib/src/deflate.c
index 62a16e1..3bb5ac4 100644
--- a/lib/zlib/src/deflate.c
+++ b/lib/zlib/src/deflate.c
@@ -47,8 +47,6 @@
*
*/
-/* @(#) $Id: deflate.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#include "deflate.h"
const char deflate_copyright[] =
diff --git a/lib/zlib/src/gzio.c b/lib/zlib/src/gzio.c
index 69d2438..33cf892 100644
--- a/lib/zlib/src/gzio.c
+++ b/lib/zlib/src/gzio.c
@@ -5,8 +5,6 @@
* Compile this file with -DNO_GZCOMPRESS to avoid the compression code.
*/
-/* @(#) $Id: gzio.c,v 1.9 2007-07-27 14:32:06 pixel Exp $ */
-
#include <stdio.h>
#include "zutil.h"
diff --git a/lib/zlib/src/trees.c b/lib/zlib/src/trees.c
index 47782f1..716179b 100644
--- a/lib/zlib/src/trees.c
+++ b/lib/zlib/src/trees.c
@@ -29,8 +29,6 @@
* Addison-Wesley, 1983. ISBN 0-201-06672-6.
*/
-/* @(#) $Id: trees.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
/* #define GEN_TREES_H */
#include "deflate.h"
diff --git a/lib/zlib/src/uncompr.c b/lib/zlib/src/uncompr.c
index 879dca0..42ac98c 100644
--- a/lib/zlib/src/uncompr.c
+++ b/lib/zlib/src/uncompr.c
@@ -3,8 +3,6 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* @(#) $Id: uncompr.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#define ZLIB_INTERNAL
#include "zlib.h"
diff --git a/lib/zlib/src/zutil.c b/lib/zlib/src/zutil.c
index 636f115..67ec729 100644
--- a/lib/zlib/src/zutil.c
+++ b/lib/zlib/src/zutil.c
@@ -3,8 +3,6 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* @(#) $Id: zutil.c,v 1.6 2007-07-27 14:32:06 pixel Exp $ */
-
#include "zutil.h"
#ifndef NO_DUMMY_DECL