Browse Source

rtl_fm/power: unbreak MinGW build

Signed-off-by: Steve Markgraf <steve@steve-m.de>
Steve Markgraf 11 years ago
parent
commit
aced2dbd0e
2 changed files with 4 additions and 0 deletions
  1. 2 0
      src/rtl_fm.c
  2. 2 0
      src/rtl_power.c

+ 2 - 0
src/rtl_fm.c

@@ -57,7 +57,9 @@
 #include <io.h>
 #include "getopt/getopt.h"
 #define usleep(x) Sleep(x/1000)
+#ifdef _MSC_VER
 #define round(x) (x > 0.0 ? floor(x + 0.5): ceil(x - 0.5))
+#endif
 #define _USE_MATH_DEFINES
 #endif
 

+ 2 - 0
src/rtl_power.c

@@ -53,7 +53,9 @@
 #include <io.h>
 #include "getopt/getopt.h"
 #define usleep(x) Sleep(x/1000)
+#ifdef _MSC_VER
 #define round(x) (x > 0.0 ? floor(x + 0.5): ceil(x - 0.5))
+#endif
 #define _USE_MATH_DEFINES
 #endif