aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index f8e54de54..e816a2726 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1662,11 +1662,15 @@ int bb_xioctl(int fd, unsigned request, void *argp) FAST_FUNC;
1662#define xioctl(fd,request,argp) bb_xioctl(fd,request,argp) 1662#define xioctl(fd,request,argp) bb_xioctl(fd,request,argp)
1663#endif 1663#endif
1664 1664
1665char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC;
1666#if !ENABLE_PLATFORM_MINGW32 1665#if !ENABLE_PLATFORM_MINGW32
1666char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC;
1667void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC; 1667void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC;
1668#endif
1669void reset_ino_dev_hashtable(void) FAST_FUNC; 1668void reset_ino_dev_hashtable(void) FAST_FUNC;
1669#else
1670#define add_to_ino_dev_hashtable(s, n) (void)0
1671#define is_in_ino_dev_hashtable(s) NULL
1672#define reset_ino_dev_hashtable()
1673#endif
1670#ifdef __GLIBC__ 1674#ifdef __GLIBC__
1671/* At least glibc has horrendously large inline for this, so wrap it */ 1675/* At least glibc has horrendously large inline for this, so wrap it */
1672unsigned long long bb_makedev(unsigned major, unsigned minor) FAST_FUNC; 1676unsigned long long bb_makedev(unsigned major, unsigned minor) FAST_FUNC;