# HG changeset patch # User Matt Johnston # Date 1168484949 0 # Node ID fa7a368e12b19fb4783e3eef6aa710912a30c872 # Parent bd240aa12ba7cf7077c5c66f34e876d1c9024c81 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 diff -r bd240aa12ba7 -r fa7a368e12b1 tommath.h --- 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 #include -#include +#include "tommath_class.h" #undef MIN #define MIN(x,y) ((x)<(y)?(x):(y)) diff -r bd240aa12ba7 -r fa7a368e12b1 tommath_class.h --- a/tommath_class.h Wed Mar 08 13:22:52 2006 +0000 +++ b/tommath_class.h Thu Jan 11 03:09:09 2007 +0000 @@ -987,8 +987,8 @@ #ifdef LTM3 #define LTM_LAST #endif -#include -#include +#include "tommath_superclass.h" +#include "tommath_class.h" #else #define LTM_LAST #endif