mirror of https://github.com/bsnes-emu/bsnes.git
7 lines
190 B
C
7 lines
190 B
C
|
#pragma once
|
||
|
#include_next <math.h>
|
||
|
/* "Old" (Pre-2015) Windows headers/libc don't have round. */
|
||
|
static inline double round(double f)
|
||
|
{
|
||
|
return f >= 0? (int)(f + 0.5) : (int)(f - 0.5);
|
||
|
}
|