bc: convert to "G trick" - this returns bc to zero bss increase
[oweals/busybox.git] / coreutils / link.c
index 6e20dafe349a1eebe929abaf76b7d1691dd506a3..d8d583b7b79bd4ef64e452df11643e146c4bfac2 100644 (file)
 int link_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int link_main(int argc UNUSED_PARAM, char **argv)
 {
-       opt_complementary = "=2"; /* exactly 2 params */
-       getopt32(argv, "");
+       getopt32(argv, "^" "" "\0" "=2");
        argv += optind;
        if (link(argv[0], argv[1]) != 0) {
                /* shared message */
-               bb_perror_msg_and_die("can't create %slink "
-                                       "'%s' to '%s'", "hard",
-                                       argv[1], argv[0]
+               bb_perror_msg_and_die("can't create %slink '%s' to '%s'",
+                       "hard", argv[1], argv[0]
                );
        }
        return EXIT_SUCCESS;