From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:27
|
Commit-ID: 2bbe917ede194f89caca7ed9c1ed00a950c7b9c0 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=2bbe917ede194f89caca7ed9c1ed00a950c7b9c0 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:10:53 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing prototype in tokhash.c (from tokhash.pl) Signed-off-by: H. Peter Anvin <hp...@zy...> --- tokhash.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tokhash.pl b/tokhash.pl index 60bd258..509520b 100755 --- a/tokhash.pl +++ b/tokhash.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl ## -------------------------------------------------------------------------- ## -## Copyright 1996-2009 The NASM Authors - All Rights Reserved +## Copyright 1996-2014 The NASM Authors - All Rights Reserved ## See the file AUTHORS included with the NASM distribution for ## the specific copyright holders. ## @@ -211,6 +211,7 @@ if ($output eq 'h') { print "#include \"nasm.h\"\n"; print "#include \"hashtbl.h\"\n"; print "#include \"insns.h\"\n"; + print "#include \"stdscan.h\"\n"; print "\n"; # These somewhat odd sizes and ordering thereof are due to the |