diff options
author | Ron Yorston <rmy@pobox.com> | 2017-08-23 11:49:24 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-08-23 11:49:24 +0100 |
commit | 118e010f3fb0512776a28569b42ef66e6d6b3a8f (patch) | |
tree | f22f08c30c9721503c976da44d4e0eeb18dea33c /include/libbb.h | |
parent | 3b974365a17e3a580d908b7deed2410f2ac03d97 (diff) | |
download | busybox-w32-118e010f3fb0512776a28569b42ef66e6d6b3a8f.tar.gz busybox-w32-118e010f3fb0512776a28569b42ef66e6d6b3a8f.tar.bz2 busybox-w32-118e010f3fb0512776a28569b42ef66e6d6b3a8f.zip |
inode_hash: avoid warnings about unused parameters
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index c95f43954..2b349ed12 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1626,7 +1626,9 @@ int bb_xioctl(int fd, unsigned request, void *argp) FAST_FUNC; | |||
1626 | #endif | 1626 | #endif |
1627 | 1627 | ||
1628 | char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC; | 1628 | char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC; |
1629 | #if !ENABLE_PLATFORM_MINGW32 | ||
1629 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC; | 1630 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC; |
1631 | #endif | ||
1630 | void reset_ino_dev_hashtable(void) FAST_FUNC; | 1632 | void reset_ino_dev_hashtable(void) FAST_FUNC; |
1631 | #ifdef __GLIBC__ | 1633 | #ifdef __GLIBC__ |
1632 | /* At least glibc has horrendously large inline for this, so wrap it */ | 1634 | /* At least glibc has horrendously large inline for this, so wrap it */ |