Remove building with NOCRYPTO option
[minix3.git] / external / bsd / byacc / dist / test / empty.y
blobe1489dfffa00a28b90908239f35b9210d89ea12d
1 /* $NetBSD: empty.y,v 1.1.1.1 2015/01/03 22:58:23 christos Exp $ */
3 %{
4 #ifdef YYBISON
5 #define YYLEX_DECL() yylex(void)
6 #define YYERROR_DECL() yyerror(const char *s)
7 static int YYLEX_DECL();
8 static void YYERROR_DECL();
9 #endif
12 start: ;
16 #include <stdio.h>
18 static int
19 YYLEX_DECL() {
20 return -1;
23 static void
24 YYERROR_DECL() {
25 printf("%s\n",s);