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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
usr.bin
/
yacc
/
test
/
error.y
blob
41148ea92dba0a278fd902609692a6d089bf9526
1
%%
2
S:
error
3
%%
4
main
(){
printf
(
"yyparse() = %d
\n
"
,
yyparse
());}
5
yylex
(){
return
-
1
;}
6
yyerror
(
s
)
char
*
s
;{
printf
(
"%s
\n
"
,
s
);}