diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/grp_.h (renamed from include/grp.h) | 2 | ||||
-rw-r--r-- | include/libbb.h | 4 | ||||
-rw-r--r-- | include/pwd_.h (renamed from include/pwd.h) | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/grp.h b/include/grp_.h index 12fecd02e..0ce274cf0 100644 --- a/include/grp.h +++ b/include/grp_.h @@ -2,7 +2,7 @@ #define __CONFIG_GRP_H #if !defined CONFIG_USE_BB_PWD_GRP -#include_next <grp.h> +#include <grp.h> #else diff --git a/include/libbb.h b/include/libbb.h index f83cc7623..02babb884 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -39,8 +39,8 @@ #include "config.h" -#include "pwd.h" -#include "grp.h" +#include "pwd_.h" +#include "grp_.h" #ifdef CONFIG_FEATURE_SHADOWPASSWDS #include "shadow_.h" #endif diff --git a/include/pwd.h b/include/pwd_.h index 178e9e97a..3f081e872 100644 --- a/include/pwd.h +++ b/include/pwd_.h @@ -2,7 +2,7 @@ #define __CONFIG_PWD_H #if !defined CONFIG_USE_BB_PWD_GRP -#include_next <pwd.h> +#include <pwd.h> #else |