This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/JIT/HPP/JIT.hpp

30 lines
346 B
C++
Raw Normal View History

2015-01-26 04:02:46 +00:00
2015-01-20 03:00:42 +00:00
#ifndef JIT_HPP
#define JIT_HPP
#ifdef __cplusplus
#include <vector>
#include <string>
#include <cstdio>
#include <iostream>
#include <fstream>
#include <time.h>
#include <dlfcn.h>
#include "config.h"
#if USE_GMP
#include <gmpxx.h>
#endif
2015-02-03 02:40:41 +00:00
extern "C" {
2015-01-20 03:00:42 +00:00
#include "absmi.h"
2015-02-03 02:40:41 +00:00
}
2015-01-20 03:00:42 +00:00
using namespace std;
#else
#define LIMIT_COUNT 4096
#endif
#endif