summaryrefslogtreecommitdiff
path: root/openbsd-compat/vis.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-08 16:34:56 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-08 16:34:56 +0000
commitefe35aad529ea752a6301addb39b46eaf5be7af2 (patch)
tree283a15e73981dc634c83618d1e95557e9bfd0faf /openbsd-compat/vis.c
parentb8b8ecf87d432b857bbf41a51454791cafc6e3d7 (diff)
- (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
<rjmooney@mediaone.net>
Diffstat (limited to 'openbsd-compat/vis.c')
-rw-r--r--openbsd-compat/vis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/vis.c b/openbsd-compat/vis.c
index 94283a077..f49277eb3 100644
--- a/openbsd-compat/vis.c
+++ b/openbsd-compat/vis.c
@@ -35,10 +35,10 @@
35static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $"; 35static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $";
36#endif /* LIBC_SCCS and not lint */ 36#endif /* LIBC_SCCS and not lint */
37 37
38#ifndef HAVE_VIS
39
40#include "includes.h" 38#include "includes.h"
41 39
40#ifndef HAVE_VIS
41
42#define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') 42#define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
43 43
44/* 44/*