summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJörn Engel <joern@wohnheim.fh-wedel.de>2003-06-05 02:13:30 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-06-05 02:13:30 -0700
commit319b508d6409a24967766768968c83222f653c8d (patch)
tree2c649d9b2f69725835c8727c53ed05f60e402431 /lib
parentaa12a7e30f1ea62603909c59124ccecccd5b858a (diff)
[PATCH] zlib cleanup: ZEXPORT
Just a simple s/ZEXPORT//.
Diffstat (limited to 'lib')
-rw-r--r--lib/zlib_deflate/deflate.c2
-rw-r--r--lib/zlib_inflate/inflate.c18
2 files changed, 10 insertions, 10 deletions
diff --git a/lib/zlib_deflate/deflate.c b/lib/zlib_deflate/deflate.c
index d95719fb469b..6d18ba65d093 100644
--- a/lib/zlib_deflate/deflate.c
+++ b/lib/zlib_deflate/deflate.c
@@ -1252,7 +1252,7 @@ local block_state deflate_slow(s, flush)
return flush == Z_FINISH ? finish_done : block_done;
}
-extern int ZEXPORT zlib_deflate_workspacesize ()
+extern int zlib_deflate_workspacesize ()
{
return sizeof(deflate_workspace);
}
diff --git a/lib/zlib_inflate/inflate.c b/lib/zlib_inflate/inflate.c
index 063b10f85aea..386fc6778fbe 100644
--- a/lib/zlib_inflate/inflate.c
+++ b/lib/zlib_inflate/inflate.c
@@ -8,13 +8,13 @@
#include "infblock.h"
#include "infutil.h"
-int ZEXPORT zlib_inflate_workspacesize(void)
+int zlib_inflate_workspacesize(void)
{
return sizeof(struct inflate_workspace);
}
-int ZEXPORT zlib_inflateReset(
+int zlib_inflateReset(
z_streamp z
)
{
@@ -28,7 +28,7 @@ int ZEXPORT zlib_inflateReset(
}
-int ZEXPORT zlib_inflateEnd(
+int zlib_inflateEnd(
z_streamp z
)
{
@@ -41,7 +41,7 @@ int ZEXPORT zlib_inflateEnd(
}
-int ZEXPORT zlib_inflateInit2_(
+int zlib_inflateInit2_(
z_streamp z,
int w,
const char *version,
@@ -103,7 +103,7 @@ static int zlib_inflate_packet_flush(inflate_blocks_statef *s)
}
-int ZEXPORT zlib_inflateInit_(
+int zlib_inflateInit_(
z_streamp z,
const char *version,
int stream_size
@@ -117,7 +117,7 @@ int ZEXPORT zlib_inflateInit_(
#define NEEDBYTE {if(z->avail_in==0)goto empty;r=trv;}
#define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
-int ZEXPORT zlib_inflate(
+int zlib_inflate(
z_streamp z,
int f
)
@@ -250,7 +250,7 @@ int ZEXPORT zlib_inflate(
}
-int ZEXPORT zlib_inflateSync(
+int zlib_inflateSync(
z_streamp z
)
{
@@ -309,7 +309,7 @@ int ZEXPORT zlib_inflateSync(
* decompressing, PPP checks that at the end of input packet, inflate is
* waiting for these length bytes.
*/
-int ZEXPORT zlib_inflateSyncPoint(
+int zlib_inflateSyncPoint(
z_streamp z
)
{
@@ -380,7 +380,7 @@ static int zlib_inflate_addhistory(inflate_blocks_statef *s,
* will have been updated if need be.
*/
-int ZEXPORT zlib_inflateIncomp(
+int zlib_inflateIncomp(
z_stream *z
)