summaryrefslogtreecommitdiffstats
path: root/Resources/GetTimeOfDayTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Resources/GetTimeOfDayTest.cpp')
-rw-r--r--Resources/GetTimeOfDayTest.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Resources/GetTimeOfDayTest.cpp b/Resources/GetTimeOfDayTest.cpp
new file mode 100644
index 0000000..3b5bf60
--- /dev/null
+++ b/Resources/GetTimeOfDayTest.cpp
@@ -0,0 +1,15 @@
+#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;
+}