aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-07-03 23:19:26 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-07-03 23:19:26 +0000
commit851036f3faecf4b664ccec9e77a3d274a2492741 (patch)
tree25f08b2b2ea8b333aac91b6b75876f82a4cfef6f /include
parent87d618846726b0ab2ff9d3f7e2d687e554743e2b (diff)
downloadbusybox-w32-851036f3faecf4b664ccec9e77a3d274a2492741.tar.gz
busybox-w32-851036f3faecf4b664ccec9e77a3d274a2492741.tar.bz2
busybox-w32-851036f3faecf4b664ccec9e77a3d274a2492741.zip
Scrub pwd.h and grp.h handling so we don't have to play any
silly games. -Erik git-svn-id: svn://busybox.net/trunk/busybox@5011 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
2#define __CONFIG_GRP_H 2#define __CONFIG_GRP_H
3 3
4#if !defined CONFIG_USE_BB_PWD_GRP 4#if !defined CONFIG_USE_BB_PWD_GRP
5#include_next <grp.h> 5#include <grp.h>
6 6
7#else 7#else
8 8
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 @@
39 39
40#include "config.h" 40#include "config.h"
41 41
42#include "pwd.h" 42#include "pwd_.h"
43#include "grp.h" 43#include "grp_.h"
44#ifdef CONFIG_FEATURE_SHADOWPASSWDS 44#ifdef CONFIG_FEATURE_SHADOWPASSWDS
45#include "shadow_.h" 45#include "shadow_.h"
46#endif 46#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 @@
2#define __CONFIG_PWD_H 2#define __CONFIG_PWD_H
3 3
4#if !defined CONFIG_USE_BB_PWD_GRP 4#if !defined CONFIG_USE_BB_PWD_GRP
5#include_next <pwd.h> 5#include <pwd.h>
6 6
7#else 7#else
8 8