diff options
author | Ladislav Zezula <zezula@volny.cz> | 2020-05-10 06:43:37 +0200 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2020-05-10 06:43:37 +0200 |
commit | 6065d16ba99f40011c494a31a8f65b7edd15025e (patch) | |
tree | 4fdfc84ff5c9882d775b1e3da2ce70020ab5a39c /src/zlib/inftrees.h | |
parent | 147b4aa7e5278287e235cad1849e0d9dd0d5a0f0 (diff) |
* ZLIB updated
* Minor fixes
Diffstat (limited to 'src/zlib/inftrees.h')
-rw-r--r-- | src/zlib/inftrees.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/zlib/inftrees.h b/src/zlib/inftrees.h index baa53a0..14429f3 100644 --- a/src/zlib/inftrees.h +++ b/src/zlib/inftrees.h @@ -8,6 +8,9 @@ subject to change. Applications should only use zlib.h. */ +#ifndef __INFTREES_H_ +#define __INFTREES_H_ + /* Structure for decoding tables. Each entry provides either the information needed to do the operation requested by the code that indexed that table entry, or it provides a pointer to another @@ -60,3 +63,5 @@ typedef enum { int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens, unsigned codes, code FAR * FAR *table, unsigned FAR *bits, unsigned short FAR *work)); + +#endif // __INFTREES_H_ |