summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2012-08-13 22:10:14 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:50 +0200
commit5b6aee2a90b337856aa23fd24a4637f488929ed0 (patch)
tree10d49ef991ff9fa563f71a9fd022614ddeea5fe6 /cpp
parentdddc44a59e3e393d5440a06e2b0535aeb1304f77 (diff)
downloaddev86-5b6aee2a90b337856aa23fd24a4637f488929ed0.tar.gz
Import Dev86src-0.16.19.tar.gzv0.16.19
Diffstat (limited to 'cpp')
-rw-r--r--cpp/cpp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/cpp.c b/cpp/cpp.c
index 616cf87..9ac04f3 100644
--- a/cpp/cpp.c
+++ b/cpp/cpp.c
@@ -431,19 +431,19 @@ break_break:
/* Possible composite tokens */
if( ch > ' ' && ch <= '~' )
{
- struct token_trans *p;
+ struct token_trans *tt;
*curword = cc = ch;
for(state=1; ; state++)
{
curword[state] = ch = chget();
- if( !(p=is_ctok(curword, state+1)) )
+ if( !(tt=is_ctok(curword, state+1)) )
{
unchget(ch);
curword[state] = '\0';
return cc;
}
- cc=p->token;
+ cc=tt->token;
}
}
return ch;