]> granicus.if.org Git - check/commitdiff
Use #if defined(_MSC_VER) instead of #if _MSC_VER
authorbel2125 <bel2125@gmail.com>
Fri, 25 Aug 2017 21:15:34 +0000 (23:15 +0200)
committerbel2125 <bel2125@gmail.com>
Fri, 25 Aug 2017 21:15:34 +0000 (23:15 +0200)
lib/gettimeofday.c
lib/libcompat.h
src/check.h.in

index 62be4e9f474c941c0dc53277e465103387303359..e2ee0b1f558430523cb044a6ffc5f4854dc233aa 100644 (file)
@@ -29,7 +29,7 @@
 
 int gettimeofday(struct timeval *tv, void *tz)
 {
-#if _MSC_VER
+#if defined(_MSC_VER)
     union
     {
         __int64 ns100;          /*time since 1 Jan 1601 in 100ns units */
index 0aee471a1084c6d14d0c748667984404d9994285..8694e4fe5931131525f8fcf6840e10d3398238ac 100644 (file)
@@ -54,7 +54,7 @@
 #define CK_DLL_EXP
 #endif
 
-#if _MSC_VER
+#if defined(_MSC_VER)
 #include <WinSock2.h>           /* struct timeval, API used in gettimeofday implementation */
 #include <io.h>                 /* read, write */
 #include <process.h>            /* getpid */
index 877114663a81bb7db809ce3fc142af87430a56b2..4f49702a13280813d2d9346a63e18c1e15093ef4 100644 (file)
@@ -63,7 +63,7 @@ CK_CPPSTART
 
 #include <sys/types.h>
 
-#if _MSC_VER
+#if defined(_MSC_VER)
 /* define pid_t for Windows, as it is needed later */
 #define pid_t int
 #endif /* _MSC_VER */