File: kernel.h

package info (click to toggle)
elk 3.0-8.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,088 kB
  • ctags: 3,115
  • sloc: ansic: 20,686; lisp: 5,232; makefile: 411; awk: 91; sh: 19
file content (24 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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