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:
parent
dbff159906
commit
867c93c1b3
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ static GTF_constants GC = {
|
||||||
|
|
||||||
/*-------------------------- Implementation -------------------------------*/
|
/*-------------------------- Implementation -------------------------------*/
|
||||||
|
|
||||||
static double round(double v)
|
double round(double v)
|
||||||
{
|
{
|
||||||
return floor(v + 0.5);
|
return floor(v + 0.5);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue