diff options
Diffstat (limited to 'lib/hx509/sel-gram.y')
-rw-r--r-- | lib/hx509/sel-gram.y | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/hx509/sel-gram.y b/lib/hx509/sel-gram.y index 7f7c9980e03b..7e9d4f26d9c2 100644 --- a/lib/hx509/sel-gram.y +++ b/lib/hx509/sel-gram.y @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008 Kungliga Tekniska Högskolan + * Copyright (c) 2017 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -39,6 +39,18 @@ #include <stdlib.h> #include <hx_locl.h> +#if !defined(yylex) +#define yylex _hx509_sel_yylex +#define yywrap _hx509_sel_yywrap +#endif +#if !defined(yyparse) +#define yyparse _hx509_sel_yyparse +#define yyerror _hx509_sel_yyerror +#define yylval _hx509_sel_yylval +#define yychar _hx509_sel_yychar +#define yydebug _hx509_sel_yydebug +#define yynerrs _hx509_sel_yynerrs +#endif %} |