Remove static from function definition according to SO answer

Patch from https://stackoverflow.com/questions/16378555/error-while-compiling-svga-source
This commit is contained in:
Felisp 2023-11-23 00:35:14 +01:00
parent dbff159906
commit 867c93c1b3

View file

@ -64,7 +64,7 @@ static GTF_constants GC = {
/*-------------------------- Implementation -------------------------------*/
static double round(double v)
double round(double v)
{
return floor(v + 0.5);
}