diff --git a/tinyexpr.c b/tinyexpr.c index 176e8d0..55c5494 100755 --- a/tinyexpr.c +++ b/tinyexpr.c @@ -236,7 +236,7 @@ static double negate(double a) {return -a;} static double comma(double a, double b) {(void)a; return b;} -void next_token(state *s) { +static void next_token(state *s) { s->type = TOK_NULL; do {