blob: f3336385d8ddc861dcb157f71aaa82aa15801973 (
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
|
#pragma once
#ifndef ICORE_PCH
#define ICORE_PCH
#include "../../runtime/precommon.h"
#include <stdlib.h>
#include <ctype.h>
#include <assert.h>
#include <iostream>
#include <sstream>
#include <stdarg.h>
#include <vector>
#include <cstring>
#include <math.h>
#include <map>
#include <memory>
#include <stdexcept>
#ifndef SCI_LEXER
#error "Please define SCI_LEXER macro for syntax highlighter"
#endif
#endif //ICORE_PCH
|