From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:24
|
Commit-ID: a725d0afd0e713dc29c64a61b283dd317f0ec199 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=a725d0afd0e713dc29c64a61b283dd317f0ec199 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:06:55 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing header file in crc64.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- crc64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crc64.c b/crc64.c index d93ea0c..338e0be 100644 --- a/crc64.c +++ b/crc64.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * 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. * @@ -33,6 +33,7 @@ #include "compiler.h" #include "nasmlib.h" +#include "hashtbl.h" static const uint64_t crc64_tab[256] = { UINT64_C(0x0000000000000000), UINT64_C(0x7ad870c830358979), |