diff options
author | Denys Vlasenko | 2011-01-25 23:21:46 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-01-25 23:21:46 +0100 |
commit | 8d0e0cdadf726beab28ccdc7d69738c1534e1f74 (patch) | |
tree | 73eec58affb5ac0b6d8e97fb36e9f0beb11da00d /miscutils | |
parent | 9aa599dc9dc076f6fa6e4312e4750a703cf16450 (diff) | |
download | busybox-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.zip busybox-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.gz |
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 fec5b70..12457b1 100644 --- a/miscutils/last.c +++ b/miscutils/last.c @@ -8,7 +8,6 @@ */ #include "libbb.h" -#include <utmp.h> /* NB: ut_name and ut_user are the same field, use only one name (ut_user) * to reduce confusion */ diff --git a/miscutils/last_fancy.c b/miscutils/last_fancy.c index 7e69fc2..7e61b76 100644 --- a/miscutils/last_fancy.c +++ b/miscutils/last_fancy.c @@ -8,7 +8,6 @@ */ #include "libbb.h" -#include <utmp.h> /* NB: ut_name and ut_user are the same field, use only one name (ut_user) * to reduce confusion */ diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c index 363e450..7024361 100644 --- a/miscutils/runlevel.c +++ b/miscutils/runlevel.c @@ -12,7 +12,6 @@ * initially busyboxified by Bernhard Reutner-Fischer */ #include "libbb.h" -#include <utmp.h> int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int runlevel_main(int argc UNUSED_PARAM, char **argv) diff --git a/miscutils/wall.c b/miscutils/wall.c index eecfc16..0a2b89e 100644 --- a/miscutils/wall.c +++ b/miscutils/wall.c @@ -7,7 +7,6 @@ */ #include "libbb.h" -#include <utmp.h> int wall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int wall_main(int argc UNUSED_PARAM, char **argv) |