dtcm: Always use ANSI function prototypes

This commit is contained in:
Peter Howkins
2020-11-29 01:55:09 +00:00
parent c62a5049ed
commit d98b2c4c34
60 changed files with 890 additions and 953 deletions

View File

@@ -31,7 +31,6 @@
#ifndef _LEXER_H
#define _LEXER_H
#include "ansi_c.h"
#include "rtable4.h"
extern int yyylineno;
@@ -42,7 +41,7 @@ extern Tag_4 externTag;
extern Appt_Status_4 externApptStatus;
extern Privacy_Level_4 externPrivacy;
extern void setinput P((FILE*));
extern int yyylex P(());
extern void setinput(FILE*);
extern int yyylex(void);
#endif