1 --- gpsd-2.33-orig/gpsd.h 2006-06-09 07:11:55.000000000 -0600
2 +++ gpsd-2.33/gpsd.h 2006-08-25 16:48:18.000000000 -0600
4 /* some OSes don't have round(). fake it if need be */
6 #define round(x) ((double)rint(x))
7 -#define roundf(x) ((float)rintf(x))
8 +#define roundf(x) ((float)rint((double)x))
9 #endif /* !HAVE_ROUND */
11 /* OpenBSD and FreeBSD and Cygwin don't seem to have NAN, NetBSD does, others? */