From 56add86543006afc497d5a05368549a1293bf5c0 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Tue, 28 Sep 2010 17:24:57 +0200 Subject: [PATCH 1/3] dhash: add stddef.h to dhash.h size_t is used in dhash.h and was currently not defined by any included header file. --- dhash/dhash.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dhash/dhash.h b/dhash/dhash.h index 70d083e..95f9fff 100644 --- a/dhash/dhash.h +++ b/dhash/dhash.h @@ -77,6 +77,7 @@ terms of this license. /*****************************************************************************/ #include +#include /*****************************************************************************/ /*********************************** Defines *********************************/ -- 1.7.2.3