repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
external
/
bsd
/
byacc
/
dist
/
test
/
error.y
blob
ab3ae47838b678dd6681ec0cb25ac53ecfb02713
1
/* $NetBSD$ */
2
3
%%
4
S:
error
5
%%
6
main
(){
printf
(
"yyparse() = %d
\n
"
,
yyparse
());}
7
yylex
(){
return
-
1
;}
8
yyerror
(
s
)
char
*
s
;{
printf
(
"%s
\n
"
,
s
);}