aboutsummaryrefslogtreecommitdiff
path: root/data_recorder.c
diff options
context:
space:
mode:
authorMichael Turvey <mwturvey@users.noreply.github.com>2018-03-10 23:31:28 -0700
committerGitHub <noreply@github.com>2018-03-10 23:31:28 -0700
commit8eea660564e8fa9e1f5f01a278e1df9898694975 (patch)
tree504786ff79dcac436229e7c6e6a97ae305a38293 /data_recorder.c
parentc3f6a9a94575035b4226fc646989d561efe5c3f4 (diff)
parent8ef086fb0524f8d9958de96276790952562902ef (diff)
downloadlibsurvive-8eea660564e8fa9e1f5f01a278e1df9898694975.tar.gz
libsurvive-8eea660564e8fa9e1f5f01a278e1df9898694975.tar.bz2
Merge pull request #108 from mwturvey/fix_save_restore_LH_POS
Fix MSVC & Fix Saving & Restoring PositionSet bit
Diffstat (limited to 'data_recorder.c')
-rw-r--r--data_recorder.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/data_recorder.c b/data_recorder.c
index 80e95be..8116946 100644
--- a/data_recorder.c
+++ b/data_recorder.c
@@ -12,9 +12,13 @@
#include <stdlib.h>
#include <string.h>
#include <survive.h>
-#include <sys/time.h>
+
#include <time.h>
+#ifndef _MSC_VER
+#include <sys/time.h>
+#endif
+
#include "redist/os_generic.h"
struct SurviveContext *ctx;
@@ -50,7 +54,7 @@ double timestamp_in_us() {
return OGGetAbsoluteTime() - start_time_us;
}
-int write_to_output(const char *format, ...) {
+void write_to_output(const char *format, ...) {
va_list args;
va_start(args, format);
fprintf(output_file, "%0.6f ", timestamp_in_us());