diff options
author | Denis Vlasenko | 2006-11-24 14:54:27 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-24 14:54:27 +0000 |
commit | 0b35470d9b5e75a7a1df2e6860b48831e7920353 (patch) | |
tree | 1bf3d6658a938f85d25b1febe8185eab75274ddd /include/libbb.h | |
parent | cf30cc82a343802b601f01ae153916887f11eb7b (diff) | |
download | busybox-0b35470d9b5e75a7a1df2e6860b48831e7920353.zip busybox-0b35470d9b5e75a7a1df2e6860b48831e7920353.tar.gz |
glibc makedev() is a large inline. Save 700+ bytes by wrapping it
into a function.
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index ad64bad..582e34f 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 * int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); void reset_ino_dev_hashtable(void); +#ifdef __GLIBC__ +/* At least glibc has horrendously large inline for this, so wrap it */ +extern unsigned long long bb_makedev(unsigned int major, unsigned int minor); +#undef makedev +#define makedev(a,b) bb_makedev(a,b) +#endif #ifndef COMM_LEN |