aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-01-12 13:34:13 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-01-12 13:34:13 +0000
commitfaeaf734aad25ed379f1bc45215288744e709e50 (patch)
tree9527f70c607bc8a07056a0d64c1250195e8d5b18
parent2e838308ac33acffaa499d7b1ca8a941ee0ac445 (diff)
downloadsrc-faeaf734aad25ed379f1bc45215288744e709e50.tar.gz
src-faeaf734aad25ed379f1bc45215288744e709e50.zip
include ctype.h to pick isprint macro
Notes
Notes: svn path=/head/; revision=21609
-rw-r--r--usr.bin/more/output.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/more/output.c b/usr.bin/more/output.c
index a02e4d888c56..5b0a562c4d37 100644
--- a/usr.bin/more/output.c
+++ b/usr.bin/more/output.c
@@ -40,8 +40,9 @@ static char sccsid[] = "@(#)output.c 8.1 (Berkeley) 6/6/93";
* High level routines dealing with the output to the screen.
*/
+#include <ctype.h>
#include <stdio.h>
-#include <less.h>
+#include "less.h"
int errmsgs; /* Count of messages displayed by error() */