From 336dbd5c985bc30e60d6694df0254084e613b3dc Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 3 Jul 2012 10:44:59 +1000 Subject: [PATCH] Remove needless roundl define. --- miner.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/miner.h b/miner.h index 88c03927..7301c14e 100644 --- a/miner.h +++ b/miner.h @@ -159,10 +159,6 @@ void *alloca (size_t); #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) #endif -#ifndef roundl -#define roundl(x) (long double)((long long)((x==0)?0.0:((x)+((x)>0)?0.5:-0.5))) -#endif - enum alive { LIFE_WELL, LIFE_SICK,