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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2017-01-21 01:02:40 +0300
committerJan Kotas <jkotas@microsoft.com>2017-01-21 01:02:40 +0300
commit354d0fae2a78ac8b183f8ac4662618918e8d57a3 (patch)
tree12601bf698b0da1b439e29942b8c53febd69c972
parent909f23ca551351e12182de173b4c2b123894ae8b (diff)
Fix build of native components on Alpine (#2550)
This tiny change enables successful build of the native components on x64 Alpine Linux.
-rw-r--r--src/Native/System.Private.CoreLib.Native/pal_datetime.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Native/System.Private.CoreLib.Native/pal_datetime.cpp b/src/Native/System.Private.CoreLib.Native/pal_datetime.cpp
index e38f40321..19a97e5fd 100644
--- a/src/Native/System.Private.CoreLib.Native/pal_datetime.cpp
+++ b/src/Native/System.Private.CoreLib.Native/pal_datetime.cpp
@@ -3,6 +3,7 @@
// See the LICENSE file in the project root for more information.
#include <stdlib.h>
+#include <stdint.h>
#include <sys/time.h>
static const int64_t SECS_TO_100NS = 10000000; /* 10^7 */