aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
-rw-r--r--include/mingw.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 0c7e03ee8..61574b5ee 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1712,7 +1712,7 @@ int bb_xioctl(int fd, unsigned request, void *argp) FAST_FUNC;
1712#define xioctl(fd,request,argp) bb_xioctl(fd,request,argp) 1712#define xioctl(fd,request,argp) bb_xioctl(fd,request,argp)
1713#endif 1713#endif
1714 1714
1715#if !ENABLE_PLATFORM_MINGW32 1715#if !ENABLE_PLATFORM_MINGW32 || ENABLE_FEATURE_EXTRA_FILE_DATA
1716char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC; 1716char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC;
1717void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC; 1717void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC;
1718void reset_ino_dev_hashtable(void) FAST_FUNC; 1718void reset_ino_dev_hashtable(void) FAST_FUNC;
diff --git a/include/mingw.h b/include/mingw.h
index 185eb66ed..0f403b993 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -283,6 +283,9 @@ int mingw_chmod(const char *path, int mode);
283typedef int nlink_t; 283typedef int nlink_t;
284typedef int blksize_t; 284typedef int blksize_t;
285typedef off_t blkcnt_t; 285typedef off_t blkcnt_t;
286#if ENABLE_FEATURE_EXTRA_FILE_DATA
287#define ino_t uint64_t
288#endif
286 289
287struct mingw_stat { 290struct mingw_stat {
288 dev_t st_dev; 291 dev_t st_dev;