aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-12-04 08:44:05 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-12-04 08:44:05 +0000
commitb0576ff7e0418b4b2f72fa4c4c12939ce67adc99 (patch)
tree73a8e1bf5389d791b80f12c2b3db1db98b3f4eb7 /gnu
parent907b6f57b98d62c834ddde79b0c24f31d77b37c4 (diff)
Notes
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cvs/cvs/prepend_args.c5
1 files changed, 2 insertions, 3 deletions
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 <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';
}