summaryrefslogtreecommitdiffstats
path: root/gnu/lib/libregex/test/printchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/lib/libregex/test/printchar.c')
-rw-r--r--gnu/lib/libregex/test/printchar.c14
1 files changed, 0 insertions, 14 deletions
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);
-}
OpenPOWER on IntegriCloud