diff options
Diffstat (limited to 'coreutils/true.c')
-rw-r--r-- | coreutils/true.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/true.c b/coreutils/true.c index b2f3a9bad..eee621331 100644 --- a/coreutils/true.c +++ b/coreutils/true.c | |||
@@ -10,9 +10,10 @@ | |||
10 | /* BB_AUDIT SUSv3 compliant */ | 10 | /* BB_AUDIT SUSv3 compliant */ |
11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */ | 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */ |
12 | 12 | ||
13 | #include <stdlib.h> | ||
14 | #include "busybox.h" | 13 | #include "busybox.h" |
15 | 14 | ||
15 | /* This is a NOFORK applet. Be very careful! */ | ||
16 | |||
16 | int true_main(int argc, char **argv); | 17 | int true_main(int argc, char **argv); |
17 | int true_main(int argc, char **argv) | 18 | int true_main(int argc, char **argv) |
18 | { | 19 | { |