blob: 492711e96aeae52c3447ab0ccd64bf16c726d2d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef GRAMMAR_CRT_H
#define GRAMMAR_CRT_H
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
typedef unsigned long grammar;
typedef unsigned char byte;
#define GRAMMAR_PORT_INCLUDE 1
#include "grammar.h"
#undef GRAMMAR_PORT_INCLUDE
#endif
|