aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-07-03 23:19:26 +0000
committerEric Andersen <andersen@codepoet.org>2002-07-03 23:19:26 +0000
commit887ca79f04cdf45874ed783c1fb9b950bf25a246 (patch)
tree25f08b2b2ea8b333aac91b6b75876f82a4cfef6f /include
parent360e2549544b813dd805361d04744c5a4a630bb8 (diff)
downloadbusybox-887ca79f04cdf45874ed783c1fb9b950bf25a246.tar.gz
Scrub pwd.h and grp.h handling so we don't have to play any
silly games. -Erik
Diffstat (limited to 'include')
-rw-r--r--include/grp_.h (renamed from include/grp.h)2
-rw-r--r--include/libbb.h4
-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