X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=cmp.c;h=24b6c3f925bcbe7dccd20b719290751ca58ae809;hb=e5f39576650933770153e82c63a46f27fcd72b0e;hp=a4b6c7d497515c9d8f3fb74b003b02d03a9d51f8;hpb=ed3ef50c233ffb1b50ea0e7382a8e60b86491009;p=oweals%2Fbusybox.git diff --git a/cmp.c b/cmp.c index a4b6c7d49..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,11 +22,11 @@ * */ -#include "busybox.h" #include #include #include #include +#include "busybox.h" int cmp_main(int argc, char **argv) { @@ -36,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) {