mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-23 04:54:26 +00:00
Add macro roundl for compilers without said function.
This commit is contained in:
parent
3977f6c6c7
commit
123058b587
4
miner.h
4
miner.h
@ -159,6 +159,10 @@ void *alloca (size_t);
|
|||||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef roundl
|
||||||
|
#define roundl(x) (long double)((long long)((x==0)?0.0:((x)+((x)>0)?0.5:-0.5)))
|
||||||
|
#endif
|
||||||
|
|
||||||
enum alive {
|
enum alive {
|
||||||
LIFE_WELL,
|
LIFE_WELL,
|
||||||
LIFE_SICK,
|
LIFE_SICK,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user