Prototypes and header cleanups for parser.

This commit is contained in:
Stefano Sanfilippo 2014-11-24 21:18:59 +01:00
parent adb1c82e7c
commit 2f42a60849

View File

@ -1,10 +1,11 @@
%{ %{
#include "Type.h" #include "Type.h"
#include <stdlib.h>
#define YYERROR_VERBOSE #define YYERROR_VERBOSE
extern void emit(const char *, ...); extern void emit(const char *, ...);
extern void yyerror(const char *);
extern int yylex();
%} %}
%union { %union {