diff tommath.h @ 385:fa7a368e12b1 libtommath-dropbear

Refer to local headers locally with #include "" not #include <>. Required now that we've got rid of the libtomcrypt variants that were 'accidentally' being included in the -I path
author Matt Johnston <matt@ucc.asn.au>
date Thu, 11 Jan 2007 03:09:09 +0000
parents 91fbc376f010
children 4663ced4968f
line wrap: on
line diff
--- a/tommath.h	Wed Mar 08 13:22:52 2006 +0000
+++ b/tommath.h	Thu Jan 11 03:09:09 2007 +0000
@@ -21,7 +21,7 @@
 #include <ctype.h>
 #include <limits.h>
 
-#include <tommath_class.h>
+#include "tommath_class.h"
 
 #undef MIN
 #define MIN(x,y) ((x)<(y)?(x):(y))