xref: /llvm-project/libc/cmake/modules/compiler_features/check_builtin_round.cpp (revision 4531f82c1ad905614c1df9359a77d48e6397fd97)
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