summaryrefslogtreecommitdiffstats
path: root/rsc/source/rscpp/cpp3.c
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/source/rscpp/cpp3.c')
-rw-r--r--rsc/source/rscpp/cpp3.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c
index b9ed7a9e1af1..7f9c8adbaf8d 100644
--- a/rsc/source/rscpp/cpp3.c
+++ b/rsc/source/rscpp/cpp3.c
@@ -449,6 +449,7 @@ void initdefines()
register char **pp;
register char *tp;
register DEFBUF *dp;
+ int i;
time_t tvec;
#if !defined( WNT ) && !defined(G3)
@@ -475,10 +476,8 @@ void initdefines()
* notices this and calls the appropriate routine.
* DEF_NOARGS is one greater than the first "magic" definition.
*/
- if (nflag < 2)
- {
- int i = DEF_NOARGS;
- for (pp = magic; *pp != NULL; pp++) {
+ if (nflag < 2) {
+ for (pp = magic, i = DEF_NOARGS; *pp != NULL; pp++) {
dp = defendel(*pp, FALSE);
dp->nargs = --i;
}