From 25220e0721460c0e187f221feb22f19eb6dc06a4 Mon Sep 17 00:00:00 2001 From: kremlin Date: Fri, 19 Sep 2014 21:14:14 -0400 Subject: [PATCH] include path fix --- DH-Keccak/assets/KremKeccak/krem_keccak.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DH-Keccak/assets/KremKeccak/krem_keccak.c b/DH-Keccak/assets/KremKeccak/krem_keccak.c index 01fe486..565ff26 100644 --- a/DH-Keccak/assets/KremKeccak/krem_keccak.c +++ b/DH-Keccak/assets/KremKeccak/krem_keccak.c @@ -5,9 +5,9 @@ #include #include -#include "../keccak-ref/Sources/KeccakSponge.c" -#include "../keccak-ref/Sources/KeccakF-1600-reference.c" -#include "../keccak-ref/Sources/displayIntermediateValues.c" +#include "KeccakSponge.c" +#include "KeccakF-1600-reference.c" +#include "displayIntermediateValues.c" #define HI_NIBBLE(b) (((b) >> 4) & 0x0F) #define LO_NIBBLE(b) ((b) & 0x0F) -- 2.41.0