1 | float try_builtin_roundf(float x) { return __builtin_roundf(x); } |
---|---|
2 | |
3 | double try_builtin_round(double x) { return __builtin_round(x); } |
4 | |
5 | extern "C"void _start() {} |
6 |
1 | float try_builtin_roundf(float x) { return __builtin_roundf(x); } |
---|---|
2 | |
3 | double try_builtin_round(double x) { return __builtin_round(x); } |
4 | |
5 | extern "C"void _start() {} |
6 |