6 lines
162 B
C++
6 lines
162 B
C++
float try_builtin_roundf(float x) { return __builtin_roundf(x); }
|
|
|
|
double try_builtin_round(double x) { return __builtin_round(x); }
|
|
|
|
extern "C" void _start() {}
|