aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index ad64bad84..582e34f52 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -509,6 +509,12 @@ extern unsigned long get_ug_id(const char *s, long (*__bb_getxxnam)(const char *
509int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); 509int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
510void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); 510void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
511void reset_ino_dev_hashtable(void); 511void reset_ino_dev_hashtable(void);
512#ifdef __GLIBC__
513/* At least glibc has horrendously large inline for this, so wrap it */
514extern unsigned long long bb_makedev(unsigned int major, unsigned int minor);
515#undef makedev
516#define makedev(a,b) bb_makedev(a,b)
517#endif
512 518
513 519
514#ifndef COMM_LEN 520#ifndef COMM_LEN