summaryrefslogtreecommitdiff
path: root/contrib/infback9/infback9.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/infback9/infback9.h')
-rw-r--r--contrib/infback9/infback9.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/infback9/infback9.h b/contrib/infback9/infback9.h
index 10bf58c..1073c0a 100644
--- a/contrib/infback9/infback9.h
+++ b/contrib/infback9/infback9.h
@@ -16,6 +16,10 @@
16 * zlib.h must be included before this header file. 16 * zlib.h must be included before this header file.
17 */ 17 */
18 18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
19ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm, 23ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
20 in_func in, void FAR *in_desc, 24 in_func in, void FAR *in_desc,
21 out_func out, void FAR *out_desc)); 25 out_func out, void FAR *out_desc));
@@ -27,3 +31,7 @@ ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
27#define inflateBack9Init(strm, window) \ 31#define inflateBack9Init(strm, window) \
28 inflateBack9Init_((strm), (window), \ 32 inflateBack9Init_((strm), (window), \
29 ZLIB_VERSION, sizeof(z_stream)) 33 ZLIB_VERSION, sizeof(z_stream))
34
35#ifdef __cplusplus
36}
37#endif