Sign in
android
/
toolchain
/
llvm-project
/
09262553fa1874bec04aebb1ecd3fd3386d316d5
/
.
/
libc
/
cmake
/
modules
/
compiler_features
/
check_builtin_roundeven.cpp
blob: 0aa40dc7f4b7a9c1ccd5f9d62c5b774f57e3c76e [
file
] [
log
] [
blame
]
float
try_builtin_roundevenf
(
float
x
)
{
return
__builtin_roundevenf
(
x
);
}
double
try_builtin_roundeven
(
double
x
)
{
return
__builtin_roundeven
(
x
);
}
extern
"C"
void
_start
()
{}