Browse Source

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

we want to include the local version of the header, not the system-version
Steffen Jaeckel 8 years ago
parent
commit
66527b3e5e

+ 1 - 1
src/ciphers/rc2.c

@@ -16,7 +16,7 @@
 * Thanks to CodeView, SoftIce, and D86 for helping bring this code to  *
 * Thanks to CodeView, SoftIce, and D86 for helping bring this code to  *
 * the public.                                                          *
 * the public.                                                          *
 \**********************************************************************/
 \**********************************************************************/
-#include <tomcrypt.h>
+#include "tomcrypt.h"
 
 
 /**
 /**
   @file rc2.c
   @file rc2.c

+ 1 - 1
src/ciphers/safer/safer.c

@@ -26,7 +26,7 @@
 *
 *
 *******************************************************************************/
 *******************************************************************************/
 
 
-#include <tomcrypt.h>
+#include "tomcrypt.h"
 
 
 #ifdef LTC_SAFER
 #ifdef LTC_SAFER
 
 

+ 1 - 1
src/misc/hkdf/hkdf.c

@@ -11,7 +11,7 @@
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 
 
-#include <tomcrypt.h>
+#include "tomcrypt.h"
 
 
 #ifdef LTC_HKDF
 #ifdef LTC_HKDF
 
 

+ 1 - 1
src/misc/pkcs5/pkcs_5_1.c

@@ -6,7 +6,7 @@
  * The library is free for all purposes without any express
  * The library is free for all purposes without any express
  * guarantee it works.
  * guarantee it works.
  */
  */
-#include <tomcrypt.h>
+#include "tomcrypt.h"
 
 
 /**
 /**
    @file pkcs_5_1.c
    @file pkcs_5_1.c

+ 1 - 1
src/misc/pkcs5/pkcs_5_2.c

@@ -6,7 +6,7 @@
  * The library is free for all purposes without any express
  * The library is free for all purposes without any express
  * guarantee it works.
  * guarantee it works.
  */
  */
-#include <tomcrypt.h>
+#include "tomcrypt.h"
 
 
 /**
 /**
    @file pkcs_5_2.c
    @file pkcs_5_2.c