diff options
author | jbj <devnull@localhost> | 2002-02-10 16:50:06 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-02-10 16:50:06 +0000 |
commit | be0595b4b5eeb1dcc74cbe33a341c2da6dfe9d89 (patch) | |
tree | 8bb509ea994e361e362fd3b3c22bba4464b83381 /zlib/inftrees.h | |
parent | f9f29be96a5ad8774294ffe50d2d243009fa91c1 (diff) | |
download | librpm-tizen-be0595b4b5eeb1dcc74cbe33a341c2da6dfe9d89.tar.gz librpm-tizen-be0595b4b5eeb1dcc74cbe33a341c2da6dfe9d89.tar.bz2 librpm-tizen-be0595b4b5eeb1dcc74cbe33a341c2da6dfe9d89.zip |
Flip 4.0.4 devel changes back here.
More splint fiddles.
CVS patchset: 5311
CVS date: 2002/02/10 16:50:06
Diffstat (limited to 'zlib/inftrees.h')
-rw-r--r-- | zlib/inftrees.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/zlib/inftrees.h b/zlib/inftrees.h index 8463da401..331d17794 100644 --- a/zlib/inftrees.h +++ b/zlib/inftrees.h @@ -44,7 +44,7 @@ extern int inflate_trees_bits OF(( inflate_huft * FAR *tb, /* bits tree result */ inflate_huft *hp, /* space for trees */ z_streamp z)) /* for messages */ - /*@modifies *bb, *tb, *hp @*/; + /*@modifies *bb, *tb, *hp, z @*/; extern int inflate_trees_dynamic OF(( uInt nl, /* number of literal/length codes */ @@ -52,16 +52,22 @@ extern int inflate_trees_dynamic OF(( uIntf *c, /* that many (total) code lengths */ uIntf *bl, /* literal desired/actual bit depth */ uIntf *bd, /* distance desired/actual bit depth */ +/*@out@*/ inflate_huft * FAR *tl, /* literal/length tree result */ +/*@out@*/ inflate_huft * FAR *td, /* distance tree result */ inflate_huft *hp, /* space for trees */ z_streamp z)) /* for messages */ - /*@modifies *bl, *bd, *tl, *td, *hp @*/; + /*@modifies *bl, *bd, *tl, *td, *hp, z @*/; extern int inflate_trees_fixed OF(( +/*@out@*/ uIntf *bl, /* literal desired/actual bit depth */ +/*@out@*/ uIntf *bd, /* distance desired/actual bit depth */ +/*@out@*/ inflate_huft * FAR *tl, /* literal/length tree result */ +/*@out@*/ inflate_huft * FAR *td, /* distance tree result */ z_streamp z)) /* for memory allocation */ - /*@modifies *bl, *bd, *tl, *td @*/; + /*@modifies *bl, *bd, *tl, *td, z @*/; |