diff options
author | Leo Izen <leo.izen@gmail.com> | 2017-10-15 13:28:28 -0400 |
---|---|---|
committer | Leo Izen <leo.izen@gmail.com> | 2017-10-15 13:28:28 -0400 |
commit | 64de36cc785cf2cb478db953e52151deaf5144c6 (patch) | |
tree | b659361b5da258923a16386c32fb4d14ba1e0182 | |
parent | Use basic config by default (diff) | |
download | libkeccak-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.
-rw-r--r-- | benchmark.c | 2 | ||||
-rw-r--r-- | test.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmark.c b/benchmark.c index 20344d9..101c269 100644 --- a/benchmark.c +++ b/benchmark.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> @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include <libkeccak.h> +#include "libkeccak.h" #include <fcntl.h> #include <stdio.h> |