Remove building with NOCRYPTO option
[minix3.git] / external / bsd / byacc / dist / test / err_syntax22.y
blob5144e6368fd92f89d91d0b908ae2e6138d181619
1 /* $NetBSD: err_syntax22.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 %union {
9 int ival;
10 double dval;
13 %token NUMBER
14 %type <dval> expr
18 expr : '(' recur ')'
19 { foo( $$ = $2 ); }
22 recur : NUMBER
27 #include <stdio.h>
29 int
30 main(void)
32 printf("yyparse() = %d\n", yyparse());
33 return 0;
36 int
37 yylex(void)
39 return -1;
42 static void
43 yyerror(const char* s)
45 printf("%s\n", s);