diff options
Diffstat (limited to 'procps')
-rw-r--r-- | procps/free.c | 2 | ||||
-rw-r--r-- | procps/fuser.c | 2 | ||||
-rw-r--r-- | procps/kill.c | 2 | ||||
-rw-r--r-- | procps/pidof.c | 2 | ||||
-rw-r--r-- | procps/ps.c | 2 | ||||
-rw-r--r-- | procps/renice.c | 2 | ||||
-rw-r--r-- | procps/sysctl.c | 2 | ||||
-rw-r--r-- | procps/top.c | 2 | ||||
-rw-r--r-- | procps/uptime.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/procps/free.c b/procps/free.c index 2b205d0c7..42193fdec 100644 --- a/procps/free.c +++ b/procps/free.c @@ -9,7 +9,7 @@ /* getopt not needed */ -#include "busybox.h" +#include "libbb.h" int free_main(int argc, char **argv); int free_main(int argc, char **argv) diff --git a/procps/fuser.c b/procps/fuser.c index 40789dd5e..f65b05d98 100644 --- a/procps/fuser.c +++ b/procps/fuser.c @@ -8,7 +8,7 @@ * GNU Library General Public License */ -#include "busybox.h" +#include "libbb.h" #define FUSER_PROC_DIR "/proc" #define FUSER_MAX_LINE 255 diff --git a/procps/kill.c b/procps/kill.c index 3e0e121ca..892a798c5 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -8,7 +8,7 @@ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ -#include "busybox.h" +#include "libbb.h" /* Note: kill_main is directly called from shell in order to implement * kill built-in. Shell substitutes job ids with process groups first. diff --git a/procps/pidof.c b/procps/pidof.c index ea2520a4f..3541aeee0 100644 --- a/procps/pidof.c +++ b/procps/pidof.c @@ -7,7 +7,7 @@ * Licensed under the GPL version 2, see the file LICENSE in this tarball. */ -#include "busybox.h" +#include "libbb.h" enum { USE_FEATURE_PIDOF_SINGLE(OPTBIT_SINGLE,) diff --git a/procps/ps.c b/procps/ps.c index 55453131e..968a6fe99 100644 --- a/procps/ps.c +++ b/procps/ps.c @@ -7,7 +7,7 @@ * Licensed under the GPL version 2, see the file LICENSE in this tarball. */ -#include "busybox.h" +#include "libbb.h" #if ENABLE_DESKTOP diff --git a/procps/renice.c b/procps/renice.c index 2964e20ea..6c5bb0e20 100644 --- a/procps/renice.c +++ b/procps/renice.c @@ -19,7 +19,7 @@ * following IDs (if any). Multiple switches are allowed. */ -#include "busybox.h" +#include "libbb.h" #include <sys/resource.h> void BUG_bad_PRIO_PROCESS(void); diff --git a/procps/sysctl.c b/procps/sysctl.c index 2c3fda5fe..a0e9e16e5 100644 --- a/procps/sysctl.c +++ b/procps/sysctl.c @@ -14,7 +14,7 @@ * */ -#include "busybox.h" +#include "libbb.h" /* * Function Prototypes diff --git a/procps/top.c b/procps/top.c index 580c30050..948ab0315 100644 --- a/procps/top.c +++ b/procps/top.c @@ -28,7 +28,7 @@ * GNU Library General Public License */ -#include "busybox.h" +#include "libbb.h" typedef struct top_status_t { diff --git a/procps/uptime.c b/procps/uptime.c index c2b5d3966..ee0657e1b 100644 --- a/procps/uptime.c +++ b/procps/uptime.c @@ -15,7 +15,7 @@ /* getopt not needed */ -#include "busybox.h" +#include "libbb.h" #ifndef FSHIFT # define FSHIFT 16 /* nr of bits of precision */ |