aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/xargs/xargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/xargs/xargs.c')
-rw-r--r--shell_cmds/xargs/xargs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell_cmds/xargs/xargs.c b/shell_cmds/xargs/xargs.c
index a1ee480..7865be3 100644
--- a/shell_cmds/xargs/xargs.c
+++ b/shell_cmds/xargs/xargs.c
@@ -65,6 +65,8 @@ __FBSDID("$FreeBSD$");
#include <string.h>
#include <unistd.h>
+#include <libiosexec.h>
+
#include "pathnames.h"
#ifdef __APPLE__
@@ -73,6 +75,8 @@ __FBSDID("$FreeBSD$");
#define COMPAT_MODE(a,b) (1)
#endif /* __APPLE__ */
+long long strtonum(const char*, long long, long long, const char**);
+
static void parse_input(int, char *[]);
static void prerun(int, char *[]);
static int prompt(void);