From 05d437a3c13804ea9f8d7f7dbb83299d9ebb63ee Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 10 Sep 2002 04:07:34 +0000 Subject: [PATCH] make @extern and @static available to v6 progs --- tools/qfcc/source/qc-lex.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/qc-lex.l b/tools/qfcc/source/qc-lex.l index 08727573e..4d4008b76 100644 --- a/tools/qfcc/source/qc-lex.l +++ b/tools/qfcc/source/qc-lex.l @@ -299,8 +299,8 @@ static keyword_t keywords[] = { {"@this", THIS, 0, 0, PROG_VERSION}, {"@argc", ARGC, 0, 0, PROG_VERSION}, {"@argv", ARGV, 0, 0, PROG_VERSION}, - {"@extern", EXTERN, 0, 0, PROG_VERSION}, - {"@static", STATIC, 0, 0, PROG_VERSION}, + {"@extern", EXTERN, 0, 1, PROG_ID_VERSION}, + {"@static", STATIC, 0, 1, PROG_ID_VERSION}, {"@sizeof", SIZEOF, 0, 0, PROG_VERSION}, };