summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2013-03-25 11:54:47 +0100
committerHelmut Grohne <helmut@subdivi.de>2013-03-25 11:54:47 +0100
commitb7dad638d2eaa4d02ac8fbbdefa540a9473d6f80 (patch)
tree54e74e7c02ca131e0c69cad860b2272d217bc833
parent2e98ddfaecfeb1800e5b19ba8234316282971aa7 (diff)
downloadssdeep-b7dad638d2eaa4d02ac8fbbdefa540a9473d6f80.tar.gz
solve a splint warning
-rw-r--r--fuzzy.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fuzzy.c b/fuzzy.c
index a9e6d4a..6123341 100644
--- a/fuzzy.c
+++ b/fuzzy.c
@@ -213,6 +213,10 @@ int fuzzy_update(struct fuzzy_state *self, const unsigned char *buffer,
return 0;
}
+#ifdef S_SPLINT_S
+extern const int EOVERFLOW;
+#endif
+
int fuzzy_digest(const struct fuzzy_state *self, /*@out@*/ char *result) {
unsigned int bi = self->bhstart;
uint32_t h = roll_sum(&self->roll);