Sign in
android
/
toolchain
/
llvm-project
/
09262553fa1874bec04aebb1ecd3fd3386d316d5
/
.
/
libc
/
cmake
/
modules
/
compiler_features
/
check_builtin_round.cpp
blob: 79a347ada8b601bf9f2e3d8976650d13d959b483 [
file
] [
log
] [
blame
]
float
try_builtin_roundf
(
float
x
)
{
return
__builtin_roundf
(
x
);
}
double
try_builtin_round
(
double
x
)
{
return
__builtin_round
(
x
);
}
extern
"C"
void
_start
()
{}