From 4c6599b12882858dff92d2ae55f6683ca070bea5 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Fri, 30 Jul 1993 20:16:54 +0000 Subject: This commit was manufactured by cvs2svn to create branch 'VENDOR-libregex'. --- gnu/lib/libregex/test/printchar.c | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 gnu/lib/libregex/test/printchar.c (limited to 'gnu/lib/libregex/test/printchar.c') diff --git a/gnu/lib/libregex/test/printchar.c b/gnu/lib/libregex/test/printchar.c deleted file mode 100644 index 1b756f4..0000000 --- a/gnu/lib/libregex/test/printchar.c +++ /dev/null @@ -1,14 +0,0 @@ -void -printchar (c) - char c; -{ - if (c < 040 || c >= 0177) - { - putchar ('\\'); - putchar (((c >> 6) & 3) + '0'); - putchar (((c >> 3) & 7) + '0'); - putchar ((c & 7) + '0'); - } - else - putchar (c); -} -- cgit v1.1