X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=cmp.c;h=24b6c3f925bcbe7dccd20b719290751ca58ae809;hb=7c25441792a0685a1eb27c6563ed293e505f5b2c;hp=6b955447c0192b453bf437aae724a9ac1d86a0b5;hpb=3e856ce428cabaf6c8d99a2374a1f9a4a05db5f0;p=oweals%2Fbusybox.git diff --git a/cmp.c b/cmp.c index 6b955447c..24b6c3f92 100644 --- a/cmp.c +++ b/cmp.c @@ -3,7 +3,7 @@ * Mini cmp implementation for busybox * * - * Copyright (C) 2000 by Lineo, inc. + * Copyright (C) 1999,2000,2001 by Lineo, inc. * Written by Matt Kraai * * This program is free software; you can redistribute it and/or modify @@ -22,10 +22,11 @@ * */ -#include "busybox.h" #include #include #include +#include +#include "busybox.h" int cmp_main(int argc, char **argv) { @@ -35,7 +36,7 @@ int cmp_main(int argc, char **argv) /* parse argv[] */ if (argc < 2 || 3 < argc) - usage(cmp_usage); + show_usage(); fp1 = xfopen(argv[1], "r"); if (argv[2] != NULL) {