xref: /llvm-project/libc/cmake/modules/compiler_features/check_builtin_round.cpp (revision 4531f82c1ad905614c1df9359a77d48e6397fd97)
1*4531f82cSOverMighty float try_builtin_roundf(float x) { return __builtin_roundf(x); }
2*4531f82cSOverMighty 
3*4531f82cSOverMighty double try_builtin_round(double x) { return __builtin_round(x); }
4*4531f82cSOverMighty 
5*4531f82cSOverMighty extern "C" void _start() {}
6