aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
Diffstat (limited to 'procps')
-rw-r--r--procps/free.c2
-rw-r--r--procps/fuser.c2
-rw-r--r--procps/kill.c2
-rw-r--r--procps/pidof.c2
-rw-r--r--procps/ps.c2
-rw-r--r--procps/renice.c2
-rw-r--r--procps/sysctl.c2
-rw-r--r--procps/top.c2
-rw-r--r--procps/uptime.c2
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 @@
9 9
10/* getopt not needed */ 10/* getopt not needed */
11 11
12#include "busybox.h" 12#include "libbb.h"
13 13
14int free_main(int argc, char **argv); 14int free_main(int argc, char **argv);
15int free_main(int argc, char **argv) 15int 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 @@
8 * GNU Library General Public License 8 * GNU Library General Public License
9 */ 9 */
10 10
11#include "busybox.h" 11#include "libbb.h"
12 12
13#define FUSER_PROC_DIR "/proc" 13#define FUSER_PROC_DIR "/proc"
14#define FUSER_MAX_LINE 255 14#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 @@
8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
9 */ 9 */
10 10
11#include "busybox.h" 11#include "libbb.h"
12 12
13/* Note: kill_main is directly called from shell in order to implement 13/* Note: kill_main is directly called from shell in order to implement
14 * kill built-in. Shell substitutes job ids with process groups first. 14 * 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 @@
7 * Licensed under the GPL version 2, see the file LICENSE in this tarball. 7 * Licensed under the GPL version 2, see the file LICENSE in this tarball.
8 */ 8 */
9 9
10#include "busybox.h" 10#include "libbb.h"
11 11
12enum { 12enum {
13 USE_FEATURE_PIDOF_SINGLE(OPTBIT_SINGLE,) 13 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 @@
7 * Licensed under the GPL version 2, see the file LICENSE in this tarball. 7 * Licensed under the GPL version 2, see the file LICENSE in this tarball.
8 */ 8 */
9 9
10#include "busybox.h" 10#include "libbb.h"
11 11
12#if ENABLE_DESKTOP 12#if ENABLE_DESKTOP
13 13
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 @@
19 * following IDs (if any). Multiple switches are allowed. 19 * following IDs (if any). Multiple switches are allowed.
20 */ 20 */
21 21
22#include "busybox.h" 22#include "libbb.h"
23#include <sys/resource.h> 23#include <sys/resource.h>
24 24
25void BUG_bad_PRIO_PROCESS(void); 25void 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 @@
14 * 14 *
15 */ 15 */
16 16
17#include "busybox.h" 17#include "libbb.h"
18 18
19/* 19/*
20 * Function Prototypes 20 * 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 @@
28 * GNU Library General Public License 28 * GNU Library General Public License
29 */ 29 */
30 30
31#include "busybox.h" 31#include "libbb.h"
32 32
33 33
34typedef struct top_status_t { 34typedef 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 @@
15 15
16/* getopt not needed */ 16/* getopt not needed */
17 17
18#include "busybox.h" 18#include "libbb.h"
19 19
20#ifndef FSHIFT 20#ifndef FSHIFT
21# define FSHIFT 16 /* nr of bits of precision */ 21# define FSHIFT 16 /* nr of bits of precision */