aboutsummaryrefslogtreecommitdiff
path: root/coreutils/fold.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/fold.c')
-rw-r--r--coreutils/fold.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/coreutils/fold.c b/coreutils/fold.c
index 665b93e6e..aff7bb1d9 100644
--- a/coreutils/fold.c
+++ b/coreutils/fold.c
@@ -10,13 +10,6 @@
10 Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 10 Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
11*/ 11*/
12 12
13#include <ctype.h>
14#include <errno.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18#include <sys/types.h>
19#include <unistd.h>
20#include "busybox.h" 13#include "busybox.h"
21 14
22static unsigned long flags; 15static unsigned long flags;
@@ -61,7 +54,7 @@ int fold_main(int argc, char **argv)
61 if (*a == '-' && !a[1]) 54 if (*a == '-' && !a[1])
62 break; 55 break;
63 if (isdigit(*a)) { 56 if (isdigit(*a)) {
64 argv[i] = bb_xasprintf("-w%s", a); 57 argv[i] = xasprintf("-w%s", a);
65 } 58 }
66 } 59 }
67 } 60 }