Remove building with NOCRYPTO option
[minix3.git] / external / bsd / byacc / dist / test / err_syntax18.y
blobf8d3c67fc73632e8f3c1ce77b6c0aa207afe5da1
1 /* $NetBSD: err_syntax18.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 { $$ = $4; }
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);