diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-10 02:52:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-10 02:52:19 +0000 |
commit | 2ea630f9a50b439181aedb0a5d837d319deed9f5 (patch) | |
tree | 45ca2d70e7a570de52267d55554875ef7003939b /libbb | |
parent | 2f8f71b20dbce1328a5175bb75ae15564f7e9489 (diff) | |
download | busybox-2ea630f9a50b439181aedb0a5d837d319deed9f5.tar.gz |
bb_makedev: fix for glibc 2.3.2
sed: fix C++ style declaration
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/makedev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/makedev.c b/libbb/makedev.c index 09ed7287d..4903e4783 100644 --- a/libbb/makedev.c +++ b/libbb/makedev.c @@ -7,6 +7,7 @@ */ /* We do not include libbb.h - #define makedev() is there! */ +#include <features.h> #include <sys/sysmacros.h> #ifdef __GLIBC__ |