diff --git a/usr.bin/sort/sort.c b/usr.bin/sort/sort.c index 4b7306b327c..7e0ab6914b4 100644 --- a/usr.bin/sort/sort.c +++ b/usr.bin/sort/sort.c @@ -986,21 +986,6 @@ main(int argc, char **argv) set_tmpdir(); set_sort_opts(); -#if 0 - { - static int counter = 0; - char fn[128]; - sprintf(fn, "/var/tmp/debug.sort.%d", counter++); - FILE* f = fopen(fn, "w"); - fprintf(f, ">>sort>>"); - for (int i = 0; i < argc; i++) { - fprintf(f, "<%s>", argv[i]); - } - fprintf(f, "<