Remove building with NOCRYPTO option
[minix3.git] / external / bsd / byacc / dist / test / code_debug.y
blob41224cd82088f180b8605aeefb255b1ddbf8c99e
1 /* $NetBSD: code_debug.y,v 1.1.1.1 2015/01/03 22:58:23 christos Exp $ */
3 %{
5 #ifdef YYBISON
6 int yylex(void);
7 static void yyerror(const char *);
8 #endif
12 S: error
15 #include <stdio.h>
17 #ifdef YYBYACC
18 extern int YYLEX_DECL();
19 #endif
21 int
22 main(void)
24 printf("yyparse() = %d\n", yyparse());
25 return 0;
28 int
29 yylex(void)
31 return -1;
34 static void
35 yyerror(const char* s)
37 printf("%s\n", s);