From 684576ff457db7cbebcb6e00f840ed044ccf2e6f Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 9 Nov 2006 01:51:57 +0000 Subject: [PATCH] Moved definition of DBL_EPSILON. --- popt/popt.c | 4 ++++ popt/system.h | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/popt/popt.c b/popt/popt.c index 9ce3b355..fcf671ca 100644 --- a/popt/popt.c +++ b/popt/popt.c @@ -18,6 +18,10 @@ #include "findme.h" #include "poptint.h" +#ifndef DBL_EPSILON +#define DBL_EPSILON 2.2204460492503131e-16 +#endif + #ifdef MYDEBUG /*@unchecked@*/ int _popt_debug = 0; diff --git a/popt/system.h b/popt/system.h index a2dec861..72d52e1d 100644 --- a/popt/system.h +++ b/popt/system.h @@ -123,10 +123,6 @@ int snprintf(char *str,size_t count,const char *fmt,...); #define PACKAGE "rsync" -#ifndef DBL_EPSILON -#define DBL_EPSILON 2.2204460492503131e-16 -#endif - #ifdef _ABS #undef _ABS #endif -- 2.34.1