blob: 9cc6289fb7d0fc30a9684727994ac4602eef8815 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef INTERP_PRIVATE_H
#define INTERP_PRIVATE_H
#include <interp.h>
#include <stdbool.h>
struct interp
{
struct interp_cfg cfg;
const char *exception;
bool exit;
};
#endif
|