From: Gert van Valkenhoef Date: Wed, 16 Nov 2011 20:12:10 +0000 (+0000) Subject: Remove unused file X-Git-Url: http://deadsoftware.ru/gitweb?p=odcread.git;a=commitdiff_plain;h=a744b5b9977ae9e249a229d742d7406601ca8d49 Remove unused file --- diff --git a/convert.c b/convert.c deleted file mode 100644 index 5c00661..0000000 --- a/convert.c +++ /dev/null @@ -1,12 +0,0 @@ -#include - -int main(int argc, char *argv[]) { - int c; - while ((c = getchar()) != EOF) { - if (c == '\r') { - putchar('\n'); - } else { - putchar(c); - } - } -}