summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2014-11-25 12:06:55 -0800
committerH. Peter Anvin <hpa@zytor.com>2014-11-25 12:14:52 -0800
commita725d0afd0e713dc29c64a61b283dd317f0ec199 (patch)
tree8b60f84c191395f64b09115b7e0799458fc7fb6f
parentdb7d8685c4262c8f57b6c94894509c9a0dc67a9b (diff)
downloadnasm-a725d0afd0e713dc29c64a61b283dd317f0ec199.tar.gz
Add missing header file in crc64.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--crc64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crc64.c b/crc64.c
index d93ea0c3..338e0be4 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),