blob: b53fdf276002be0842882525c8298b7ef7920d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* Include files and extern declarations used by most of the parser.
This is a precompiled header for THINK C. */
#include <stdio.h>
#include <string.h>
#ifdef THINK_C
/* #define THINK_C_3_0 /*** TURN THIS ON FOR THINK C 3.0 ****/
#define label label_
#undef label
#endif
#ifdef THINK_C_3_0
#include <proto.h>
#endif
#ifdef THINK_C
#ifndef THINK_C_3_0
#include <stdlib.h>
#endif
#endif
#include "PROTO.h"
#include "malloc.h"
extern void fatal PROTO((char *));
|