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 /test.c | |
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.
Diffstat (limited to '')
-rw-r--r-- | test.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include <libkeccak.h> +#include "libkeccak.h" #include <fcntl.h> #include <stdio.h> |