#72 CMake: Ease use of Expat in context of a parent project
with multipe CMakeLists.txt files
#72 CMake: Resolve mistaken executable permissions
+ #76 Address compile warning with -DNDEBUG (not recommended!)
Special thanks to:
Alexander Bluhm
Kerin Millar
László Böszörményi
S. P. Zeidler
+ Segev Finer
Václav Slavík
Victor Stinner
Viktor Szakats
int gettimeofday_res;
gettimeofday_res = gettimeofday(&tv, NULL);
+
+#if defined(NDEBUG)
+ (void)gettimeofday_res;
+#else
assert (gettimeofday_res == 0);
+#endif /* defined(NDEBUG) */
/* Microseconds time is <20 bits entropy */
return tv.tv_usec;