diff options
Diffstat (limited to 'coreutils/true.c')
-rw-r--r-- | coreutils/true.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/true.c b/coreutils/true.c index 3e7eb01..1f27686 100644 --- a/coreutils/true.c +++ b/coreutils/true.c @@ -26,7 +26,7 @@ #include <stdlib.h> #include "busybox.h" -extern int true_main(int argc, char **argv) +int true_main(int argc, char **argv) { return EXIT_SUCCESS; } |