diff options
Diffstat (limited to 'coreutils/env.c')
-rw-r--r-- | coreutils/env.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index 2a271f7..ad30f01 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -29,11 +29,11 @@ * - use xfunc_error_retval */ -#include "busybox.h" -#include <errno.h> #include <getopt.h> /* struct option */ extern char **environ; +#include "libbb.h" + #if ENABLE_FEATURE_ENV_LONG_OPTIONS static const struct option env_long_options[] = { { "ignore-environment", 0, NULL, 'i' }, |