X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=mt.c;h=250856f05c29e1ea21b4a470af95ee389cfa6182;hb=a2a978ae23e267c24eb7b11662afdcc9ea47e789;hp=70d03cca40177f3f02d9ca29d26faab33423f8f0;hpb=a9819b290848e0a760f3805d5937fa050235d707;p=oweals%2Fbusybox.git diff --git a/mt.c b/mt.c index 70d03cca4..250856f05 100644 --- a/mt.c +++ b/mt.c @@ -1,8 +1,10 @@ /* vi: set sw=4 ts=4: */ -#include "busybox.h" #include +#include +#include #include #include +#include "busybox.h" struct mt_opcodes { char *name; @@ -56,12 +58,12 @@ extern int mt_main(int argc, char **argv) int fd; if (argc < 2) { - usage(mt_usage); + show_usage(); } if (strcmp(argv[1], "-f") == 0) { if (argc < 4) { - usage(mt_usage); + show_usage(); } file = argv[2]; argv += 2; @@ -75,7 +77,7 @@ extern int mt_main(int argc, char **argv) } if (code->name == 0) { - error_msg("unrecognized opcode %s.\n", argv[1]); + error_msg("unrecognized opcode %s.", argv[1]); return EXIT_FAILURE; }