Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2053a0d9eaaf755b990f80ce4df504a7 > files > 98

waf-1.5.9-1mdv2010.0.noarch.rpm

%{
#define YYSTYPE double
#include "calc.tab.h"
extern YYSTYPE yylval;
%}

%%
[0-9]+\.?[0-9]* { yylval = atof( yytext ); return NUMBER; };
[ \t] ;  /* ignore whitespace */
\n      { return yytext[0]; };
. 	{   return yytext[0]; }
<<EOF>> { printf("eof\n"); return 0; };
%%