Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
/* Y_INT '-' Y_INT */
if ($2.i >= 0)
yyerror ("Syntax error");
$$.i = $1.i + $2.i;
$$.i = $1.i - $2.i;
}
;