X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fdecompress.h;fp=include%2Fwimlib%2Fdecompress.h;h=a1963811d75b95c1d046e008f6d3debb22b1b0cd;hb=f3ab01445d6184f7c5ffd0251667de7ef7437f9a;hp=c020cbadeb64ea35394fc04bedd3af00b89170b9;hpb=f55116f8cdb1581ec14b91a231292d464194bac3;p=wimlib diff --git a/include/wimlib/decompress.h b/include/wimlib/decompress.h index c020cbad..a1963811 100644 --- a/include/wimlib/decompress.h +++ b/include/wimlib/decompress.h @@ -189,7 +189,7 @@ read_huffsym_near_end_of_input(struct input_bitstream *istream, * directory in the decode_table, as the * decode_table contains 2**table_bits entries. */ -static inline int +static _always_inline_attribute int read_huffsym(struct input_bitstream *istream, const u16 decode_table[], const u8 lens[], @@ -237,8 +237,9 @@ read_huffsym(struct input_bitstream *istream, return ret; } -extern int make_huffman_decode_table(u16 decode_table[], unsigned num_syms, - unsigned num_bits, const u8 lengths[], - unsigned max_codeword_len); +extern int +make_huffman_decode_table(u16 decode_table[], unsigned num_syms, + unsigned num_bits, const u8 lengths[], + unsigned max_codeword_len); #endif /* _WIMLIB_DECOMPRESS_H */