diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-08-17 11:24:46 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-08-17 11:24:46 +0200 |
commit | eb7fd8a1b0e6228c3d2822df201835b9ca34390a (patch) | |
tree | e70dccccd5bdd00ac3baa75c09623e3b2cb108eb /functable.h | |
parent | a7271104bf9a2d82dc6a69090c12442eacd2fd71 (diff) |
Make sure we don't export internal functions
Diffstat (limited to 'functable.h')
-rw-r--r-- | functable.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/functable.h b/functable.h index 3b01f7c..4e6f53e 100644 --- a/functable.h +++ b/functable.h @@ -8,15 +8,13 @@ #include "deflate.h" -uint32_t adler32_c(uint32_t adler, const unsigned char *buf, size_t len); - struct functable_s { void (* fill_window) (deflate_state *s); Pos (* insert_string) (deflate_state *const s, const Pos str, unsigned int count); uint32_t (* adler32) (uint32_t adler, const unsigned char *buf, size_t len); }; -extern struct functable_s functable; +ZLIB_INTERNAL extern struct functable_s functable; #endif |