summaryrefslogtreecommitdiffstats
path: root/config/cmake/GetTimeOfDayTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config/cmake/GetTimeOfDayTest.cpp')
-rw-r--r--config/cmake/GetTimeOfDayTest.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/config/cmake/GetTimeOfDayTest.cpp b/config/cmake/GetTimeOfDayTest.cpp
deleted file mode 100644
index 3b5bf60..0000000
--- a/config/cmake/GetTimeOfDayTest.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#if defined (TRY_SYS_TIME_H)
-#include <sys/time.h>
-/* #include <time.h> */
-#endif
-
-
-#if defined (TRY_TIME_H)
-#include <time.h>
-#endif
-
-int main(int argc, char **argv) {
- struct timeval t1;
- gettimeofday(&t1, 0x00);
- return 0;
-}