diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-25 23:21:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-25 23:21:46 +0100 |
commit | 8d0e0cdadf726beab28ccdc7d69738c1534e1f74 (patch) | |
tree | 73eec58affb5ac0b6d8e97fb36e9f0beb11da00d /miscutils | |
parent | 9aa599dc9dc076f6fa6e4312e4750a703cf16450 (diff) | |
download | busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.gz busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.bz2 busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.zip |
move utmp.h include to libbb.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/last.c | 1 | ||||
-rw-r--r-- | miscutils/last_fancy.c | 1 | ||||
-rw-r--r-- | miscutils/runlevel.c | 1 | ||||
-rw-r--r-- | miscutils/wall.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/miscutils/last.c b/miscutils/last.c index fec5b70a8..12457b157 100644 --- a/miscutils/last.c +++ b/miscutils/last.c | |||
@@ -8,7 +8,6 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | #include <utmp.h> | ||
12 | 11 | ||
13 | /* NB: ut_name and ut_user are the same field, use only one name (ut_user) | 12 | /* NB: ut_name and ut_user are the same field, use only one name (ut_user) |
14 | * to reduce confusion */ | 13 | * to reduce confusion */ |
diff --git a/miscutils/last_fancy.c b/miscutils/last_fancy.c index 7e69fc281..7e61b7691 100644 --- a/miscutils/last_fancy.c +++ b/miscutils/last_fancy.c | |||
@@ -8,7 +8,6 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | #include <utmp.h> | ||
12 | 11 | ||
13 | /* NB: ut_name and ut_user are the same field, use only one name (ut_user) | 12 | /* NB: ut_name and ut_user are the same field, use only one name (ut_user) |
14 | * to reduce confusion */ | 13 | * to reduce confusion */ |
diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c index 363e45049..7024361e7 100644 --- a/miscutils/runlevel.c +++ b/miscutils/runlevel.c | |||
@@ -12,7 +12,6 @@ | |||
12 | * initially busyboxified by Bernhard Reutner-Fischer | 12 | * initially busyboxified by Bernhard Reutner-Fischer |
13 | */ | 13 | */ |
14 | #include "libbb.h" | 14 | #include "libbb.h" |
15 | #include <utmp.h> | ||
16 | 15 | ||
17 | int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 16 | int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
18 | int runlevel_main(int argc UNUSED_PARAM, char **argv) | 17 | int runlevel_main(int argc UNUSED_PARAM, char **argv) |
diff --git a/miscutils/wall.c b/miscutils/wall.c index eecfc166b..0a2b89e5e 100644 --- a/miscutils/wall.c +++ b/miscutils/wall.c | |||
@@ -7,7 +7,6 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "libbb.h" | 9 | #include "libbb.h" |
10 | #include <utmp.h> | ||
11 | 10 | ||
12 | int wall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 11 | int wall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
13 | int wall_main(int argc UNUSED_PARAM, char **argv) | 12 | int wall_main(int argc UNUSED_PARAM, char **argv) |