aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorLeo Izen <leo.izen@gmail.com>2017-10-15 13:28:28 -0400
committerLeo Izen <leo.izen@gmail.com>2017-10-15 13:28:28 -0400
commit64de36cc785cf2cb478db953e52151deaf5144c6 (patch)
treeb659361b5da258923a16386c32fb4d14ba1e0182 /test.c
parentUse basic config by default (diff)
downloadlibkeccak-64de36cc785cf2cb478db953e52151deaf5144c6.tar.gz
libkeccak-64de36cc785cf2cb478db953e52151deaf5144c6.tar.bz2
libkeccak-64de36cc785cf2cb478db953e52151deaf5144c6.tar.xz
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 <libkeccak.h>` with angled brackets, which doesn't search `.` by default. Using `#include "libkeccak.h"` will search `.` so these will compile.
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
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 <libkeccak.h>
+#include "libkeccak.h"
#include <fcntl.h>
#include <stdio.h>