blob: 73156faa22cbc48b88a608cdbfd1839d58f947d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#ifndef ICORE_C_PCH
#define ICORE_C_PCH
#include "../../runtime/precommon.h"
#include <stdlib.h>
#include <ctype.h>
#include <assert.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <limits.h>
#include <errno.h>
#include <locale.h>
#include <math.h>
#include <time.h>
#include <float.h>
#ifdef _WIN32
#ifdef WIN_DRIVER
#include <windef.h>
#else
#include <windows.h>
#endif
#endif
#ifdef VMP_GNU
#else
#include <process.h>
#endif
#endif //ICORE_C_PCH
|