diff options
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 67cf4939c..b4516e99a 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -339,7 +339,7 @@ char *last_char_is(const char *s, int c); | |||
339 | 339 | ||
340 | char *fgets_str(FILE *file, const char *terminating_string); | 340 | char *fgets_str(FILE *file, const char *terminating_string); |
341 | 341 | ||
342 | extern int uncompress(int fd_in, int fd_out); | 342 | extern USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); |
343 | extern int inflate(int in, int out); | 343 | extern int inflate(int in, int out); |
344 | 344 | ||
345 | extern struct hostent *xgethostbyname(const char *name); | 345 | extern struct hostent *xgethostbyname(const char *name); |
@@ -353,9 +353,9 @@ extern void bb_lookup_host(struct sockaddr_in *s_in, const char *host); | |||
353 | // This is declared here rather than #including <libgen.h> in order to avoid | 353 | // This is declared here rather than #including <libgen.h> in order to avoid |
354 | // confusing the two versions of basename. See the dirname/basename man page | 354 | // confusing the two versions of basename. See the dirname/basename man page |
355 | // for details. | 355 | // for details. |
356 | char *dirname (char *path); | 356 | char *dirname(char *path); |
357 | 357 | ||
358 | int bb_make_directory (char *path, long mode, int flags); | 358 | int bb_make_directory(char *path, long mode, int flags); |
359 | 359 | ||
360 | int get_signum(const char *name); | 360 | int get_signum(const char *name); |
361 | const char *get_signame(int number); | 361 | const char *get_signame(int number); |