From 09c7eac41f1a74827d7ba677a605094c796219e0 Mon Sep 17 00:00:00 2001 From: leitner Date: Thu, 17 Mar 2016 11:04:08 +0000 Subject: [PATCH] #include <> to "" --- byte/byte_equal_notimingattack.c | 2 +- examples/byte.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/byte/byte_equal_notimingattack.c b/byte/byte_equal_notimingattack.c index 5939d3f..e1e4144 100644 --- a/byte/byte_equal_notimingattack.c +++ b/byte/byte_equal_notimingattack.c @@ -1,4 +1,4 @@ -#include +#include "byte.h" /* If you need to compare a password or a hash value, the timing of the * comparison function can give valuable clues to the attacker. Let's diff --git a/examples/byte.c b/examples/byte.c index 685ee5f..d94f8cc 100644 --- a/examples/byte.c +++ b/examples/byte.c @@ -1,5 +1,5 @@ -#include -#include +#include "byte.h" +#include "buffer.h" /* * The functions that are beginning with byte_ offer some handy functions, to