Skip to content
Snippets Groups Projects
Commit fcea9ca3 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

sizeof is not a reserved word

Rev: src/language.yacc:1.89
parent a8ae61a0
No related branches found
No related tags found
No related merge requests found
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
/* This is the grammar definition of Pike. */ /* This is the grammar definition of Pike. */
#include "global.h" #include "global.h"
RCSID("$Id: language.yacc,v 1.88 1998/04/24 00:34:55 hubbe Exp $"); RCSID("$Id: language.yacc,v 1.89 1998/04/26 11:39:45 hubbe Exp $");
#ifdef HAVE_MEMORY_H #ifdef HAVE_MEMORY_H
#include <memory.h> #include <memory.h>
#endif #endif
...@@ -1776,8 +1776,6 @@ bad_expr_ident: ...@@ -1776,8 +1776,6 @@ bad_expr_ident:
{ yyerror("lambda is a reserved word."); } { yyerror("lambda is a reserved word."); }
| F_SSCANF | F_SSCANF
{ yyerror("sscanf is a reserved word."); } { yyerror("sscanf is a reserved word."); }
| F_SIZEOF
{ yyerror("sizeof is a reserved word."); }
| F_SWITCH | F_SWITCH
{ yyerror("switch is a reserved word."); } { yyerror("switch is a reserved word."); }
| F_TYPEOF | F_TYPEOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment