summaryrefslogtreecommitdiffhomepage
path: root/tommath.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2007-01-11 03:09:09 +0000
committerMatt Johnston <matt@ucc.asn.au>2007-01-11 03:09:09 +0000
commit058b2bec22bc36fc5de80a90e2de4159e7c7f4db (patch)
treee68572831b4fe8237bd27eb7c6a5bb2ea9f5cd66 /tommath.h
parent2481693cf23dba90c693762a528d2923cde9c9cc (diff)
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 --HG-- branch : libtommath-dropbear extra : convert_revision : 40ab3795de3a6157f34e52ed3f0be3eebe9a2eaa
Diffstat (limited to 'tommath.h')
-rw-r--r--tommath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tommath.h b/tommath.h
index bcb9d86..6439a9d 100644
--- a/tommath.h
+++ b/tommath.h
@@ -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))