DEADSOFTWARE

Remove unused file
authorGert van Valkenhoef <g.h.m.van.valkenhoef@rug.nl>
Wed, 16 Nov 2011 20:12:10 +0000 (20:12 +0000)
committerGert van Valkenhoef <g.h.m.van.valkenhoef@rug.nl>
Wed, 16 Nov 2011 20:12:10 +0000 (20:12 +0000)
convert.c [deleted file]

diff --git a/convert.c b/convert.c
deleted file mode 100644 (file)
index 5c00661..0000000
--- a/convert.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char *argv[]) {
-       int c;
-       while ((c = getchar()) != EOF) {
-               if (c == '\r') {
-                       putchar('\n');
-               } else {
-                       putchar(c);
-               }
-       }
-}