aboutsummaryrefslogtreecommitdiff
path: root/timer/src/timer.c
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2023-02-04 18:17:39 -0800
committer3gg <3gg@shellblade.net>2023-02-04 18:17:39 -0800
commit75abeca4a9d606bee89a41475f2f451187fec127 (patch)
tree348c29304d2500f87ebce81b5ce843793d53ee68 /timer/src/timer.c
parent90183beeb914590a2ea4eff0242b813562d2d641 (diff)
More compliance with C11.
Diffstat (limited to 'timer/src/timer.c')
-rw-r--r--timer/src/timer.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/timer/src/timer.c b/timer/src/timer.c
index 0c33e51..da3485b 100644
--- a/timer/src/timer.c
+++ b/timer/src/timer.c
@@ -1,16 +1,15 @@
1#include "timer.h" 1#include "timer.h"
2 2
3#include <stdlib.h> 3#include <stdlib.h>
4
5#ifdef _WIN32 4#ifdef _WIN32
6static const int64_t microseconds = 1000000; 5#define WIN32_LEAN_AND_MEAN
6#include <Windows.h>
7#endif 7#endif
8static const int64_t nanoseconds = 1000000000;
9 8
10#ifdef _WIN32 9#ifdef _WIN32
11#define WIN32_LEAN_AND_MEAN 10static const int64_t microseconds = 1000000;
12#include <Windows.h>
13#endif 11#endif
12static const int64_t nanoseconds = 1000000000;
14 13
15#ifdef _WIN32 14#ifdef _WIN32
16static double seconds_per_count; 15static double seconds_per_count;