24 lines
393 B
C
24 lines
393 B
C
/* The `wrapper' include file used by extensions and applications.
|
|
*/
|
|
|
|
#ifndef SCHEME_H
|
|
#define SCHEME_H
|
|
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
|
|
#include "config.h"
|
|
#include "funcproto.h"
|
|
#include "param.h"
|
|
#include "object.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
|