From 713c188bf5c42f91c838e2daf42ca3f3477c2d9d Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Thu, 25 Nov 2021 06:16:21 -0800 Subject: [PATCH] Included ModelicaAllocateString.h This integrates https://github.com/lbl-srg/modelica-buildings/pull/2784 --- Buildings/Resources/C-Sources/cryptographicsHash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Buildings/Resources/C-Sources/cryptographicsHash.c b/Buildings/Resources/C-Sources/cryptographicsHash.c index 1b2973e88cc..85a139e09eb 100644 --- a/Buildings/Resources/C-Sources/cryptographicsHash.c +++ b/Buildings/Resources/C-Sources/cryptographicsHash.c @@ -23,8 +23,8 @@ A million repetitions of "a" /* for uint32_t */ #include - #include "cryptographicsHash.h" +#include "ModelicaUtilities.h" #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))