diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-09 13:39:53 +0000 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2012-04-30 16:54:51 +0200 |
commit | e3ed0575a7ce68c1c533978fc171c7611598dc4e (patch) | |
tree | b3961648748950bd490b193f469b3c4d71d56702 /include/u-boot/zlib.h | |
parent | 9a800ac718abcac0aff6f98b922ceb236f411ffd (diff) | |
download | u-boot-e3ed0575a7ce68c1c533978fc171c7611598dc4e.tar.gz u-boot-e3ed0575a7ce68c1c533978fc171c7611598dc4e.tar.xz u-boot-e3ed0575a7ce68c1c533978fc171c7611598dc4e.zip |
gunzip: rename z{alloc, free} to gz{alloc, free}
This allows us to add a proper zalloc() func (one that does a zeroing
alloc), and removes duplicate prototypes.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/u-boot/zlib.h')
-rw-r--r-- | include/u-boot/zlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/u-boot/zlib.h b/include/u-boot/zlib.h index fb2708186d..fbb08a3287 100644 --- a/include/u-boot/zlib.h +++ b/include/u-boot/zlib.h @@ -691,6 +691,9 @@ ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, struct internal_state {int dummy;}; /* hack for buggy compilers */ #endif +extern void *gzalloc(void *, unsigned, unsigned); +extern void gzfree(void *, void *, unsigned); + #ifdef __cplusplus } #endif |