Some more patchelttes from Larry Doolittle.
[oweals/busybox.git] / ps.c
diff --git a/ps.c b/ps.c
index 4ce43c47f9f0242d55d57fcb79f41c2776f2f7bb..bf162bbe53e21ef7775d01842bd47b94c1b88011 100644 (file)
--- a/ps.c
+++ b/ps.c
@@ -38,9 +38,6 @@
 #include <string.h>
 #include <sys/ioctl.h>
 #include "busybox.h"
-#define BB_DECLARE_EXTERN
-#define bb_need_help
-#include "messages.c"
 
 static const int TERMINAL_WIDTH = 79;      /* not 80 in case terminal has linefold bug */
 
@@ -97,7 +94,7 @@ static void parse_proc_status(char *S, proc_t * P)
        else
                error_msg("Internal error!");
 
-       /* For busybox, ignoring effective, saved, etc */
+       /* For busybox, ignoring effective, saved, etc. */
        tmp = strstr(S, "Uid:");
        if (tmp)
                sscanf(tmp, "Uid:\t%d", &P->ruid);