diff options
author | Denis Vlasenko | 2006-10-01 15:55:11 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-01 15:55:11 +0000 |
commit | 97a8dd3857aea9730382e2975a2ee2000fd23ebb (patch) | |
tree | 608f73898f3ed5f466dff68189625fa9328a15be /include/libbb.h | |
parent | f8aa109a9f7c67b291f240fb3ed91da90f26359b (diff) | |
download | busybox-97a8dd3857aea9730382e2975a2ee2000fd23ebb.zip busybox-97a8dd3857aea9730382e2975a2ee2000fd23ebb.tar.gz |
g[un]zip: add support for -v (verbose).
Add CONFIG_DESKTOP, almost all bloat from this change
is hidden under that.
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 67cf493..b4516e9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -339,7 +339,7 @@ char *last_char_is(const char *s, int c); char *fgets_str(FILE *file, const char *terminating_string); -extern int uncompress(int fd_in, int fd_out); +extern USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); extern int inflate(int in, int out); extern struct hostent *xgethostbyname(const char *name); @@ -353,9 +353,9 @@ extern void bb_lookup_host(struct sockaddr_in *s_in, const char *host); // This is declared here rather than #including <libgen.h> in order to avoid // confusing the two versions of basename. See the dirname/basename man page // for details. -char *dirname (char *path); +char *dirname(char *path); -int bb_make_directory (char *path, long mode, int flags); +int bb_make_directory(char *path, long mode, int flags); int get_signum(const char *name); const char *get_signame(int number); |