whitespace

This commit is contained in:
Nikolaj
2021-09-29 15:23:58 +02:00
parent a211face12
commit 90ddd7f780
10 changed files with 302 additions and 302 deletions

View File

@@ -4,9 +4,9 @@
#include <sys/time.h>
static uint64_t microseconds() {
static struct timeval t;
gettimeofday(&t, NULL);
return ((uint64_t)t.tv_sec*1000000)+t.tv_usec;
static struct timeval t;
gettimeofday(&t, NULL);
return ((uint64_t)t.tv_sec*1000000)+t.tv_usec;
}
#endif