25 lines
401 B
C
25 lines
401 B
C
|
/* The `wrapper' include file used by the interpreter.
|
||
|
*/
|
||
|
|
||
|
#ifndef KERNEL_H
|
||
|
#define KERNEL_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <signal.h>
|
||
|
|
||
|
#include "config.h"
|
||
|
#include "funcproto.h"
|
||
|
#include "param.h"
|
||
|
#include "object.h"
|
||
|
#include "intern.h"
|
||
|
#include "extern.h"
|
||
|
#include "misc.h"
|
||
|
#include "exception.h"
|
||
|
#include "gc.h"
|
||
|
#include "type.h"
|
||
|
#include "stkmem.h"
|
||
|
#include "cstring.h"
|
||
|
#include "compat.h"
|
||
|
|
||
|
#endif
|