From b0576ff7e0418b4b2f72fa4c4c12939ce67adc99 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sat, 4 Dec 1999 08:44:05 +0000 Subject: Call isspace() directly to get rid of an objectionable include. --- gnu/usr.bin/cvs/cvs/prepend_args.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/usr.bin/cvs/cvs/prepend_args.c b/gnu/usr.bin/cvs/cvs/prepend_args.c index 2c15a24e177e..12322ce48bdf 100644 --- a/gnu/usr.bin/cvs/cvs/prepend_args.c +++ b/gnu/usr.bin/cvs/cvs/prepend_args.c @@ -23,7 +23,6 @@ # include #endif #include "cvs.h" -#include "../diff/system.h" #include "prepend_args.h" @@ -44,7 +43,7 @@ prepend_args (options, buf, argv) for (;;) { - while (ISSPACE ((unsigned char) *o)) + while (isspace ((unsigned char) *o)) o++; if (!*o) return n; @@ -55,7 +54,7 @@ prepend_args (options, buf, argv) do if ((*b++ = *o++) == '\\' && *o) b[-1] = *o++; - while (*o && ! ISSPACE ((unsigned char) *o)); + while (*o && ! isspace ((unsigned char) *o)); *b++ = '\0'; } -- cgit v1.3