diff options
Diffstat (limited to 'compress.c')
-rw-r--r-- | compress.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,9 +1,9 @@ | |||
1 | /* compress.c -- compress a memory buffer | 1 | /* compress.c -- compress a memory buffer |
2 | * Copyright (C) 1995-1996 Jean-loup Gailly. | 2 | * Copyright (C) 1995-1998 Jean-loup Gailly. |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
6 | /* $Id: compress.c,v 1.10 1996/05/23 16:51:12 me Exp $ */ | 6 | /* @(#) $Id$ */ |
7 | 7 | ||
8 | #include "zlib.h" | 8 | #include "zlib.h" |
9 | 9 | ||
@@ -19,7 +19,7 @@ | |||
19 | enough memory, Z_BUF_ERROR if there was not enough room in the output | 19 | enough memory, Z_BUF_ERROR if there was not enough room in the output |
20 | buffer. | 20 | buffer. |
21 | */ | 21 | */ |
22 | int compress (dest, destLen, source, sourceLen) | 22 | int EXPORT compress (dest, destLen, source, sourceLen) |
23 | Bytef *dest; | 23 | Bytef *dest; |
24 | uLongf *destLen; | 24 | uLongf *destLen; |
25 | const Bytef *source; | 25 | const Bytef *source; |