From 64de36cc785cf2cb478db953e52151deaf5144c6 Mon Sep 17 00:00:00 2001 From: Leo Izen Date: Sun, 15 Oct 2017 13:28:28 -0400 Subject: tests: use quotes when including libkeccak.h If libkeccak is not already installed in the system, then test.c and benchmark.c will fail to compile. This is because they previously used `#include ` with angled brackets, which doesn't search `.` by default. Using `#include "libkeccak.h"` will search `.` so these will compile. --- test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test.c') diff --git a/test.c b/test.c index 8394568..168ced2 100644 --- a/test.c +++ b/test.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include +#include "libkeccak.h" #include #include -- cgit v1.2.3-70-g09d2