Remove building with NOCRYPTO option
[minix3.git] / external / bsd / byacc / dist / test / err_syntax19.y
blobea3999ea5b226c5f0431989599e65f99919ac525
1 /* $NetBSD: err_syntax19.y,v 1.1.1.1 2015/01/03 22:58:23 christos Exp $ */
3 %{
4 int yylex(void);
5 static void yyerror(const char *);
6 %}
8 %%
10 expr : '(' expr ')'
11 { $$ = $<oops>; }
16 #include <stdio.h>
18 int
19 main(void)
21 printf("yyparse() = %d\n", yyparse());
22 return 0;
25 int
26 yylex(void)
28 return -1;
31 static void
32 yyerror(const char* s)
34 printf("%s\n", s);