diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:40:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:40:19 +0000 |
commit | c6758a07c68033627a692cda27aebc8f6a662e7f (patch) | |
tree | 51bc0b498a5e16f8041604d913e25708cc76058f /include/libbb.h | |
parent | 335b63d8d1876ce4e172ebcc9d64544785682244 (diff) | |
download | busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.tar.gz busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.tar.bz2 busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.zip |
make compressed help code NOMMU- and NOFORK-friendly -
no forking anymore, bunzip2 unpack routine now does all it in memory.
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6fff441c5..2be13891c 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -403,9 +403,10 @@ extern char *xasprintf(const char *format, ...) __attribute__ ((format (printf, | |||
403 | 403 | ||
404 | /* dmalloc will redefine these to it's own implementation. It is safe | 404 | /* dmalloc will redefine these to it's own implementation. It is safe |
405 | * to have the prototypes here unconditionally. */ | 405 | * to have the prototypes here unconditionally. */ |
406 | extern void *malloc_or_warn(size_t size); | ||
406 | extern void *xmalloc(size_t size); | 407 | extern void *xmalloc(size_t size); |
407 | extern void *xrealloc(void *old, size_t size); | ||
408 | extern void *xzalloc(size_t size); | 408 | extern void *xzalloc(size_t size); |
409 | extern void *xrealloc(void *old, size_t size); | ||
409 | 410 | ||
410 | extern ssize_t safe_read(int fd, void *buf, size_t count); | 411 | extern ssize_t safe_read(int fd, void *buf, size_t count); |
411 | extern ssize_t full_read(int fd, void *buf, size_t count); | 412 | extern ssize_t full_read(int fd, void *buf, size_t count); |
@@ -862,7 +863,7 @@ void md5_begin(md5_ctx_t *ctx); | |||
862 | void md5_hash(const void *data, size_t length, md5_ctx_t *ctx); | 863 | void md5_hash(const void *data, size_t length, md5_ctx_t *ctx); |
863 | void *md5_end(void *resbuf, md5_ctx_t *ctx); | 864 | void *md5_end(void *resbuf, md5_ctx_t *ctx); |
864 | 865 | ||
865 | uint32_t *crc32_filltable(int endian); | 866 | uint32_t *crc32_filltable(uint32_t *tbl256, int endian); |
866 | 867 | ||
867 | 868 | ||
868 | enum { /* DO NOT CHANGE THESE VALUES! cp.c, mv.c, install.c depend on them. */ | 869 | enum { /* DO NOT CHANGE THESE VALUES! cp.c, mv.c, install.c depend on them. */ |