Compare commits

..

No commits in common. "500a2c4c59fdf24b57b9d4a29c9208ffa8a3e90c" and "dbff159906eff06666d3f77e18fd043828853ab9" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ typedef struct {
#define max(x,y) (((x) > (y)) ? (x) : (y)) #define max(x,y) (((x) > (y)) ? (x) : (y))
#define min(x,y) (((x) < (y)) ? (x) : (y)) #define min(x,y) (((x) < (y)) ? (x) : (y))
#ifdef __GNUC__ #ifndef __GNUC__
double fsqr (double x); double fsqr (double x);
int lsqr (int x); int lsqr (int x);

View file

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