diff options
| author | Paul Sokolovsky | 2016-09-24 16:07:18 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2016-09-24 16:07:18 +0300 |
| commit | 67d52d8cb9f7894a8d50251a67ece3c7a6178270 (patch) | |
| tree | 127aad688fe83814d258356f58885c7767194720 /extmod/uzlib | |
| parent | d46de80162132cfffc244a366bf8d12bc87d29e8 (diff) | |
extmod/uzlib/: Update uzlib to v2.0.3.
Fixes for more pedantic warnings.
Diffstat (limited to 'extmod/uzlib')
| -rw-r--r-- | extmod/uzlib/tinfgzip.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extmod/uzlib/tinfgzip.c b/extmod/uzlib/tinfgzip.c index 3eb1803c9..f1afdd0b8 100644 --- a/extmod/uzlib/tinfgzip.c +++ b/extmod/uzlib/tinfgzip.c @@ -41,6 +41,9 @@ #define FNAME 8 #define FCOMMENT 16 +void tinf_skip_bytes(TINF_DATA *d, int num); +uint16_t tinf_get_uint16(TINF_DATA *d); + void tinf_skip_bytes(TINF_DATA *d, int num) { while (num--) uzlib_get_byte(d); |
