diff options
Diffstat (limited to 'coreutils/install.c')
-rw-r--r-- | coreutils/install.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/install.c b/coreutils/install.c index ece5b95..7f168d2 100644 --- a/coreutils/install.c +++ b/coreutils/install.c @@ -9,11 +9,12 @@ * owner/group, will probably modify bb_make_directory(...) */ -#include "busybox.h" -#include "libcoreutils/coreutils.h" #include <libgen.h> #include <getopt.h> /* struct option */ +#include "libbb.h" +#include "libcoreutils/coreutils.h" + #if ENABLE_FEATURE_INSTALL_LONG_OPTIONS static const struct option install_long_options[] = { { "directory", 0, NULL, 'd' }, |