1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4
5// common.h : include file for standard system include files,
6// or project specific include files that are used frequently, but
7// are changed infrequently
8//
9
10#pragma once
11
12#ifndef _CRT_SECURE_NO_WARNINGS
13 #define _CRT_SECURE_NO_WARNINGS
14#endif // _CRT_SECURE_NO_WARNINGS
15
16#include <stdint.h>
17#include <stddef.h>
18#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21#include <wchar.h>
22#include <assert.h>
23#include <stdarg.h>
24#include <memory.h>
25
26#include <new>
27
28#ifdef PLATFORM_UNIX
29#include <pthread.h>
30#endif
31
32using namespace std;
33