xref: /llvm-project/libc/cmake/modules/compiler_features/check_builtin_roundeven.cpp (revision 4531f82c1ad905614c1df9359a77d48e6397fd97)
1*4531f82cSOverMighty float try_builtin_roundevenf(float x) { return __builtin_roundevenf(x); }
2*4531f82cSOverMighty 
3*4531f82cSOverMighty double try_builtin_roundeven(double x) { return __builtin_roundeven(x); }
4*4531f82cSOverMighty 
5*4531f82cSOverMighty extern "C" void _start() {}
6