From: nasm-bot f. C. G. <gor...@gm...> - 2017-03-08 08:43:40
|
Commit-ID: 485413344b36a4506b841b3d7fb84452b1811a0f Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=485413344b36a4506b841b3d7fb84452b1811a0f Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Wed, 8 Mar 2017 11:39:42 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Wed, 8 Mar 2017 11:39:42 +0300 asm/pragma: Add missing "assemble.h" inclusion | asm/pragma.c:131:6: error: no previous prototype for ‘process_pragma’ [-Werror=missing-prototypes] | void process_pragma(char *str) | ^~~~~~~~~~~~~~ Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- asm/pragma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/asm/pragma.c b/asm/pragma.c index d0518e8..cad2042 100644 --- a/asm/pragma.c +++ b/asm/pragma.c @@ -46,6 +46,7 @@ #include "nasm.h" #include "nasmlib.h" +#include "assemble.h" #include "error.h" /* |