From beba34dc223aa0dcf3e5f696966c5e8408b022c3 Mon Sep 17 00:00:00 2001 From: Robert de Bath Date: Sat, 24 Jan 2004 16:27:32 +0100 Subject: Import Dev86src-0.16.15.tar.gz --- cpp/cpp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp') diff --git a/cpp/cpp.c b/cpp/cpp.c index 7fcc4b5..7d287f4 100644 --- a/cpp/cpp.c +++ b/cpp/cpp.c @@ -134,8 +134,8 @@ gettok() if( ch == TK_WORD ) { - struct token_trans *p; - if( p=is_ckey(curword, strlen(curword)) ) + struct token_trans *p = is_ckey(curword, strlen(curword)) ; + if( p ) return p->token; } @@ -551,7 +551,7 @@ unchget(ch) fprintf(stderr, "\b", ch); #endif if(ch == 0) return; /* Hummm */ - if(ch == EOF) ch=EOT; /* EOF is pushed back as ^Z */ + if(ch == EOF) ch=EOT; /* EOF is pushed back as a normal character. */ ch &= 0xFF; if(unputc&0xFF000000) -- cgit v1.2.1