diff options
author | Matt Johnston <matt@ucc.asn.au> | 2007-01-11 03:09:09 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2007-01-11 03:09:09 +0000 |
commit | 058b2bec22bc36fc5de80a90e2de4159e7c7f4db (patch) | |
tree | e68572831b4fe8237bd27eb7c6a5bb2ea9f5cd66 /tommath.h | |
parent | 2481693cf23dba90c693762a528d2923cde9c9cc (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |