ps,top: add an option to show threads. +260 bytes of code
[oweals/busybox.git] / editors / cmp.c
index 2e98e6e24fc427b6be526ec4803b509af761991c..a20bb883666fee71aabc1d4b971be4b0eea4fd79 100644 (file)
@@ -37,7 +37,7 @@ int cmp_main(int argc UNUSED_PARAM, char **argv)
 {
        FILE *fp1, *fp2, *outfile = stdout;
        const char *filename1, *filename2 = "-";
-       USE_DESKTOP(off_t skip1 = 0, skip2 = 0;)
+       IF_DESKTOP(off_t skip1 = 0, skip2 = 0;)
        off_t char_pos = 0;
        int line_pos = 1; /* Hopefully won't overflow... */
        const char *fmt;
@@ -48,8 +48,8 @@ int cmp_main(int argc UNUSED_PARAM, char **argv)
        xfunc_error_retval = 2; /* 1 is returned if files are different. */
 
        opt_complementary = "-1"
-                       USE_DESKTOP(":?4")
-                       SKIP_DESKTOP(":?2")
+                       IF_DESKTOP(":?4")
+                       IF_NOT_DESKTOP(":?2")
                        ":l--s:s--l";
        opt = getopt32(argv, opt_chars);
        argv += optind;