aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/cpp/tokens.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/tools/lcc/cpp/tokens.c')
-rw-r--r--code/tools/lcc/cpp/tokens.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/code/tools/lcc/cpp/tokens.c b/code/tools/lcc/cpp/tokens.c
index 147569b..90ea47f 100644
--- a/code/tools/lcc/cpp/tokens.c
+++ b/code/tools/lcc/cpp/tokens.c
@@ -290,7 +290,7 @@ void
puttokens(Tokenrow *trp)
{
Token *tp;
- int len;
+ int len, wlen;
uchar *p;
if (verbose)
@@ -305,15 +305,15 @@ puttokens(Tokenrow *trp)
}
if (len>OBS/2) { /* handle giant token */
if (wbp > wbuf)
- write(1, wbuf, wbp-wbuf);
- write(1, (char *)p, len);
+ wlen = write(1, wbuf, wbp-wbuf);
+ wlen = write(1, (char *)p, len);
wbp = wbuf;
} else {
memcpy(wbp, p, len);
wbp += len;
}
if (wbp >= &wbuf[OBS]) {
- write(1, wbuf, OBS);
+ wlen = write(1, wbuf, OBS);
if (wbp > &wbuf[OBS])
memcpy(wbuf, wbuf+OBS, wbp - &wbuf[OBS]);
wbp -= OBS;
@@ -327,8 +327,9 @@ puttokens(Tokenrow *trp)
void
flushout(void)
{
+ int wlen;
if (wbp>wbuf) {
- write(1, wbuf, wbp-wbuf);
+ wlen = write(1, wbuf, wbp-wbuf);
wbp = wbuf;
}
}