From 3e0c428c45fdb7ec51bd3c8ee1f072385d2e62ac Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 8 Jan 2012 16:13:55 +0100 Subject: Move include close to pwd.h and grp.h includes Signed-off-by: Denys Vlasenko --- include/libbb.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include') diff --git a/include/libbb.h b/include/libbb.h index 5e957fbf8..0c266dc53 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -53,6 +53,14 @@ #include #include #include +#if ENABLE_FEATURE_SHADOWPASSWDS +# if !ENABLE_USE_BB_SHADOW +/* If using busybox's shadow implementation, do not include the shadow.h + * header as the toolchain may not provide it at all. + */ +# include +# endif +#endif #if defined(ANDROID) || defined(__ANDROID__) # define endpwent() ((void)0) # define endgrent() ((void)0) @@ -86,14 +94,6 @@ #ifdef DMALLOC # include #endif -#if ENABLE_FEATURE_SHADOWPASSWDS -# if !ENABLE_USE_BB_SHADOW -/* If using busybox's shadow implementation, do not include the shadow.h - * header as the toolchain may not provide it at all. - */ -# include -# endif -#endif /* Just in case libc doesn't define some of these... */ #ifndef _PATH_PASSWD #define _PATH_PASSWD "/etc/passwd" -- cgit v1.2.3