summaryrefslogtreecommitdiffstats
path: root/contrib/cvs
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>1999-12-04 08:44:05 +0000
committerobrien <obrien@FreeBSD.org>1999-12-04 08:44:05 +0000
commit4dbe46020bb7e4e3ed357817e0f3aceb7cd9d9e9 (patch)
tree1586a5e36547a36c2cf7bc4a8dc5b9cd68e3700b /contrib/cvs
parent10d513e35c8558bd0ffa87e77e9a1b1cac2ce11d (diff)
downloadFreeBSD-src-4dbe46020bb7e4e3ed357817e0f3aceb7cd9d9e9.zip
FreeBSD-src-4dbe46020bb7e4e3ed357817e0f3aceb7cd9d9e9.tar.gz
Call isspace() directly to get rid of an objectionable include.
Diffstat (limited to 'contrib/cvs')
-rw-r--r--contrib/cvs/src/prepend_args.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/cvs/src/prepend_args.c b/contrib/cvs/src/prepend_args.c
index 2c15a24..12322ce 100644
--- a/contrib/cvs/src/prepend_args.c
+++ b/contrib/cvs/src/prepend_args.c
@@ -23,7 +23,6 @@
# include <config.h>
#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';
}
OpenPOWER on IntegriCloud