Rewrote mkdir (and touched lots of things in the process).
[oweals/busybox.git] / coreutils / yes.c
index ac67845ac7dadce196de3a37c9ac6fc840e2649d..7d9596d0bf72156b53426ec0013254a6fdd127a1 100644 (file)
  *
  */
 
-#include "internal.h"
+/* getopt not needed */
+
 #include <stdio.h>
+#include <stdlib.h>
+#include "busybox.h"
 
 extern int yes_main(int argc, char **argv)
 {
        int i;
 
-       if (argc == 1)
+       if (argc >= 2 && *argv[1] == '-')
+               show_usage();
+
+       if (argc == 1) {
                while (1)
                        if (puts("y") == EOF) {
                                perror("yes");
-                               exit(FALSE);
+                               return EXIT_FAILURE;
                        }
+       }
 
        while (1)
                for (i = 1; i < argc; i++)
                        if (fputs(argv[i], stdout) == EOF
                                || putchar(i == argc - 1 ? '\n' : ' ') == EOF) {
                                perror("yes");
-                               exit(FALSE);
+                               return EXIT_FAILURE;
                        }
-       exit(TRUE);
+
+       return EXIT_SUCCESS;
 }