shithub: rgbds

Download patch

ref: 4395ed893a0896e11effb79a56be8770454f6177
parent: 7097b9885e4ff0c36878d5928c9554c673e82305
parent: 0d80f60fcc14ad5efbf0234d2c27dde877623100
author: Antonio Niño Díaz <[email protected]>
date: Mon Apr 10 15:51:28 EDT 2017

Merge pull request #168 from Ben10do/fix-implicit-yyparse

Fix implicit declaration of yyparse()

Signed-off-by: Antonio Niño Díaz <[email protected]>

--- a/src/link/lexer.l
+++ b/src/link/lexer.l
@@ -28,6 +28,8 @@
 
 #include "parser.h"
 
+extern int yyparse();
+
 /* File include stack. */
 
 #define	MAX_INCLUDE_DEPTH 8