diff options
Diffstat (limited to '')
-rw-r--r-- | command/xargs.c (renamed from src/commands/xargs.c) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/commands/xargs.c b/command/xargs.c index 3008c3c..2a41460 100644 --- a/src/commands/xargs.c +++ b/command/xargs.c @@ -1,6 +1,11 @@ -#include "../command.h" +#include "command.h" +#include "lslib.h" + +#include <errno.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> +#include <unistd.h> static struct { bool null_seperated; |