summaryrefslogtreecommitdiff
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
commit8b98c1077d0931b643506cadf6e5ec853cfd0f1a (patch)
treee68572831b4fe8237bd27eb7c6a5bb2ea9f5cd66
parent2514a6739b3268c98ef09863eff52ed086e4b6f9 (diff)
downloaddropbear-8b98c1077d0931b643506cadf6e5ec853cfd0f1a.tar.gz
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
-rw-r--r--tommath.h2
-rw-r--r--tommath_class.h4
2 files changed, 3 insertions, 3 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))
diff --git a/tommath_class.h b/tommath_class.h
index 9faf627..a9ae034 100644
--- a/tommath_class.h
+++ b/tommath_class.h
@@ -987,8 +987,8 @@
#ifdef LTM3
#define LTM_LAST
#endif
-#include <tommath_superclass.h>
-#include <tommath_class.h>
+#include "tommath_superclass.h"
+#include "tommath_class.h"
#else
#define LTM_LAST
#endif