We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5408074 + 2297a2d commit 40a3fedCopy full SHA for 40a3fed
common.h
@@ -413,8 +413,10 @@ typedef char* env_var_t;
413
414
#if !defined(RPCC_DEFINED) && !defined(OS_WINDOWS)
415
#ifdef _POSIX_MONOTONIC_CLOCK
416
-#if defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 17) // don't require -lrt
+#if defined(__GLIBC_PREREQ) // cut the if condition if two lines, otherwise will fail at __GLIBC_PREREQ(2, 17)
417
+#if __GLIBC_PREREQ(2, 17) // don't require -lrt
418
#define USE_MONOTONIC
419
+#endif
420
#elif defined(OS_ANDROID)
421
422
#endif
0 commit comments