Remove unused code.

master
Benoît Rouits 12 months ago
parent 18f0b4f2e8
commit 48a4695f71
  1. 7
      csv2latex.c

@ -651,13 +651,6 @@ int main (int argc, char **argv) {
while (fgets(buf, BUFSIZ, stdin)) {
fputs(buf, fp);
}
#if 0
int c;
while (EOF != (c = getc(stdin))) {
fputc(c, stderr);
putc(c, fp);
}
#endif
rewind(fp);
} else {
fp = fopen(argv[optind], "r");

Loading…
Cancel
Save