diff options
Diffstat (limited to 'coreutils/watch.c')
-rw-r--r-- | coreutils/watch.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/coreutils/watch.c b/coreutils/watch.c index b783d34de..c8b16b908 100644 --- a/coreutils/watch.c +++ b/coreutils/watch.c @@ -16,14 +16,6 @@ * reduced size. */ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <limits.h> -#include <time.h> -#include <assert.h> -#include <unistd.h> -#include <sys/wait.h> #include "busybox.h" int watch_main(int argc, char **argv) @@ -62,7 +54,7 @@ int watch_main(int argc, char **argv) printf("\033[H\033[J%s %s\n", header, thyme); - waitpid(bb_xspawn(watched_argv),0,0); + waitpid(xspawn(watched_argv),0,0); sleep(period); } } |