Sign in
fuchsia
/
third_party
/
llvm-project
/
refs/heads/upstream/revert-126671-fix-omp-ockl-linking
/
.
/
libc
/
utils
/
MPCWrapper
/
check_mpc.cpp
blob: f1f0505252773cbb5fb76df505f39c146aff902d [
file
] [
log
] [
blame
] [
edit
]
#include
<mpc.h>
int
main
()
{
mpc_t
x
;
mpc_init2
(
x
,
256
);
mpc_clear
(
x
);
return
0
;
}