Fix warnings, update generated parser

This commit is contained in:
Andy Williams 2016-01-16 16:50:26 +00:00
parent 360560acc2
commit 07e9e8a092
4 changed files with 1838 additions and 1299 deletions

View File

@ -10,6 +10,7 @@ double equate_eval(void);
const char *equate_string_get(void);
Eina_Bool equate_ok(void);
void math_init(void);
/* Fonctions type. */
typedef double (*func_t) (double);

View File

@ -1,11 +1,14 @@
%{
#include <math.h> /* For math functions, cos(), sin(), etc. */
#include "calc.h"
#include "Equate.h"
#define YYERROR_VERBOSE
void
yyerror (const char *s);
int
yylex();
double _result;
char tmp[BUFLEN];

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff