make @extern and @static available to v6 progs

This commit is contained in:
Bill Currie 2002-09-10 04:07:34 +00:00
parent 9f6f50699d
commit 05d437a3c1
1 changed files with 2 additions and 2 deletions

View File

@ -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},
};