summaryrefslogtreecommitdiff
path: root/src/gc/env/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gc/env/common.h')
-rw-r--r--src/gc/env/common.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gc/env/common.h b/src/gc/env/common.h
new file mode 100644
index 0000000000..32c0d93577
--- /dev/null
+++ b/src/gc/env/common.h
@@ -0,0 +1,31 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+// common.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#pragma once
+
+#ifndef _CRT_SECURE_NO_WARNINGS
+ #define _CRT_SECURE_NO_WARNINGS
+#endif // _CRT_SECURE_NO_WARNINGS
+
+#include <stdint.h>
+#include <stddef.h>
+#include <stdio.h>
+#include <string.h>
+#include <wchar.h>
+#include <assert.h>
+#include <stdarg.h>
+#include <memory.h>
+
+#include <new>
+
+#ifdef PLATFORM_UNIX
+#include <pthread.h>
+#endif
+
+using namespace std;