* lib/defines.h: Added MIN and MAX macros.

* libmisc/salt.c: Removed MIN and MAX macros.
This commit is contained in:
nekral-guest
2009-04-21 22:06:09 +00:00
parent 2ba18ea4a9
commit c8f45eda53
3 changed files with 13 additions and 4 deletions

View File

@ -94,10 +94,6 @@ static size_t SHA_salt_size (void)
return (size_t) (8 + rand_size);
}
/* ! Arguments evaluated twice ! */
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define MIN(x,y) ((x) < (y) ? (x) : (y))
/* Default number of rounds if not explicitly specified. */
#define ROUNDS_DEFAULT 5000
/* Minimum number of rounds. */