llvm/libc/cmake/modules/compiler_features/check_builtin_roundeven.cpp

float try_builtin_roundevenf(float x) { return __builtin_roundevenf(x); }

double try_builtin_roundeven(double x) { return __builtin_roundeven(x); }

extern "C" void _start() {}