diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/popt/popt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/popt/popt.c b/source3/popt/popt.c index e9c4c17de5..ce3687fb64 100644 --- a/source3/popt/popt.c +++ b/source3/popt/popt.c @@ -927,7 +927,9 @@ int poptGetNextOpt(poptContext con) if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_DOUBLE) { *((double *) opt->arg) = aDouble; } else { +#ifndef _ABS #define _ABS(a) ((((a) - 0.0) < DBL_EPSILON) ? -(a) : (a)) +#endif if ((_ABS(aDouble) - FLT_MAX) > DBL_EPSILON) return POPT_ERROR_OVERFLOW; if ((FLT_MIN - _ABS(aDouble)) > DBL_EPSILON) |