diff options
Diffstat (limited to 'libtommath/tommath_private.h')
-rw-r--r-- | libtommath/tommath_private.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libtommath/tommath_private.h b/libtommath/tommath_private.h index d23c333..3d3ac55 100644 --- a/libtommath/tommath_private.h +++ b/libtommath/tommath_private.h @@ -19,11 +19,11 @@ #include <ctype.h> #ifndef MIN -#define MIN(x,y) (((x) < (y)) ? (x) : (y)) + #define MIN(x,y) (((x) < (y)) ? (x) : (y)) #endif #ifndef MAX -#define MAX(x,y) (((x) > (y)) ? (x) : (y)) + #define MAX(x,y) (((x) > (y)) ? (x) : (y)) #endif #ifdef __cplusplus @@ -120,6 +120,6 @@ int func_name (mp_int * a, type b) \ #endif -/* $Source$ */ -/* $Revision$ */ -/* $Date$ */ +/* ref: HEAD -> release/1.0.1, tag: v1.0.1-rc2 */ +/* git commit: e8c27ba7df0efb90708029115c94d681dfa7812f */ +/* commit time: 2017-08-29 10:48:46 +0200 */ |