diff options
author | ache <ache@FreeBSD.org> | 1997-01-12 13:34:13 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-01-12 13:34:13 +0000 |
commit | 131b2f4db47c22dacfa1e19fca0decaa6dba854a (patch) | |
tree | 9527f70c607bc8a07056a0d64c1250195e8d5b18 /usr.bin | |
parent | 218c2d3812ef6a0714662f936bc7091ef867534e (diff) | |
download | FreeBSD-src-131b2f4db47c22dacfa1e19fca0decaa6dba854a.zip FreeBSD-src-131b2f4db47c22dacfa1e19fca0decaa6dba854a.tar.gz |
include ctype.h to pick isprint macro
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/more/output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/more/output.c b/usr.bin/more/output.c index a02e4d8..5b0a562 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() */ |