include "tomcrypt.h", not <tomcrypt.h>

we want to include the local version of the header, not the system-version
This commit is contained in:
Steffen Jaeckel
2017-06-17 13:23:56 +02:00
parent fb35d5be54
commit 66527b3e5e
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <tomcrypt.h>
#include "tomcrypt.h"
#ifdef LTC_HKDF
+1 -1
View File
@@ -6,7 +6,7 @@
* The library is free for all purposes without any express
* guarantee it works.
*/
#include <tomcrypt.h>
#include "tomcrypt.h"
/**
@file pkcs_5_1.c
+1 -1
View File
@@ -6,7 +6,7 @@
* The library is free for all purposes without any express
* guarantee it works.
*/
#include <tomcrypt.h>
#include "tomcrypt.h"
/**
@file pkcs_5_2.c