aboutsummaryrefslogtreecommitdiff
path: root/coreutils/who.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/who.c')
-rw-r--r--coreutils/who.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/who.c b/coreutils/who.c
index 3da7ed1c7..1bf552056 100644
--- a/coreutils/who.c
+++ b/coreutils/who.c
@@ -23,7 +23,7 @@
23#include <errno.h> 23#include <errno.h>
24#include <string.h> 24#include <string.h>
25#include <time.h> 25#include <time.h>
26#include <busybox.h> 26#include "busybox.h"
27 27
28extern int who_main(int argc, char **argv) 28extern int who_main(int argc, char **argv)
29{ 29{
@@ -33,7 +33,7 @@ extern int who_main(int argc, char **argv)
33 time_t now, idle; 33 time_t now, idle;
34 34
35 if (argc > 1) 35 if (argc > 1)
36 show_usage(); 36 bb_show_usage();
37 37
38 setutent(); 38 setutent();
39 devlen = sizeof("/dev/") - 1; 39 devlen = sizeof("/dev/") - 1;
@@ -81,5 +81,3 @@ extern int who_main(int argc, char **argv)
81 81
82 return 0; 82 return 0;
83} 83}
84
85