750a6bc684
+ Addition of function prototypes and include files. + Change function definitions to ANSI C style. + Initial support for CMake + Scripts to generate compiler header is now sed based.
36 lines
616 B
C
36 lines
616 B
C
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
/* $Id$ */
|
|
|
|
#include "parameters.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "file_info.h"
|
|
#include "input.h"
|
|
#include "error.h"
|
|
|
|
#define INP_PUSHBACK 3
|
|
#define INP_TYPE struct file_info
|
|
#define INP_VAR finfo
|
|
struct file_info finfo;
|
|
#include <inp_pkg.body>
|
|
#include <alloc.h>
|
|
|
|
int NoUnstack;
|
|
|
|
int AtEoIT(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
extern char *source;
|
|
|
|
int AtEoIF(void)
|
|
{
|
|
if (NoUnstack) lexerror("unexpected EOF");
|
|
return 0;
|
|
}
|