comparison 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
comparison
equal deleted inserted replaced
283:bd240aa12ba7 385:fa7a368e12b1
19 #include <string.h> 19 #include <string.h>
20 #include <stdlib.h> 20 #include <stdlib.h>
21 #include <ctype.h> 21 #include <ctype.h>
22 #include <limits.h> 22 #include <limits.h>
23 23
24 #include <tommath_class.h> 24 #include "tommath_class.h"
25 25
26 #undef MIN 26 #undef MIN
27 #define MIN(x,y) ((x)<(y)?(x):(y)) 27 #define MIN(x,y) ((x)<(y)?(x):(y))
28 #undef MAX 28 #undef MAX
29 #define MAX(x,y) ((x)>(y)?(x):(y)) 29 #define MAX(x,y) ((x)>(y)?(x):(y))