Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlexborisov <lex.borisov@gmail.com>2017-03-14 17:32:51 +0300
committerlexborisov <lex.borisov@gmail.com>2017-03-14 17:32:51 +0300
commit43b4ddf1256c32668f9da0011d52713aaa8dcfbe (patch)
tree6571dc12c83982e30d31c31f6960b16ef21d16fb
parent2055ee6d008e07b1012e8e0249b60bab6ed0e9e7 (diff)
Empty fix
-rw-r--r--source/myport/posix/mycore/perf.c6
-rw-r--r--source/myport/windows_nt/mycore/perf.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/source/myport/posix/mycore/perf.c b/source/myport/posix/mycore/perf.c
index 8b30508..a8b8be6 100644
--- a/source/myport/posix/mycore/perf.c
+++ b/source/myport/posix/mycore/perf.c
@@ -18,6 +18,9 @@
Authors: lex.borisov@gmail.com (Alexander Borisov)
*/
+#include "mycore/myosi.h"
+#include "mycore/perf.h"
+
#ifdef MyCORE_WITH_PERF
#if MODEST_BUILD_OS == Darwin || MODEST_BUILD_OS == FreeBSD
@@ -25,9 +28,6 @@
#elif MODEST_BUILD_OS == Linux
#endif
-#include "mycore/myosi.h"
-#include "mycore/perf.h"
-
struct mycore_perf {
unsigned long long start;
unsigned long long end;
diff --git a/source/myport/windows_nt/mycore/perf.c b/source/myport/windows_nt/mycore/perf.c
index f67d604..7caafdc 100644
--- a/source/myport/windows_nt/mycore/perf.c
+++ b/source/myport/windows_nt/mycore/perf.c
@@ -18,12 +18,12 @@
Authors: lex.borisov@gmail.com (Alexander Borisov)
*/
-#ifdef MyCORE_WITH_PERF
-#include <windows.h>
-
#include "mycore/myosi.h"
#include "mycore/perf.h"
+#ifdef MyCORE_WITH_PERF
+#include <windows.h>
+
struct mycore_perf {
LARGE_INTEGER start;
LARGE_INTEGER end;