From a8521e324d19b661ce7dd683f0adce21807000a2 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sun, 23 Nov 2014 22:43:42 +0100 Subject: [PATCH] Program can be empty. --- Monicelli.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monicelli.y b/Monicelli.y index c263d9c..a50599f 100644 --- a/Monicelli.y +++ b/Monicelli.y @@ -43,7 +43,7 @@ extern void emit(const char *, ...); %% program: - fun_decls main fun_decls + fun_decls main fun_decls | /* epsilon */ ; fun_decls: /* epsilon */ | fun_decls fun_decl