Sign in
fuchsia
/
third_party
/
binutils-gdb
/
7e33c17c62f9cb4d61aa5aab241e441b14bfc232
/
.
/
ld
/
testsuite
/
ld-plugin
/
pr13201.c
blob: 3bea10c813cc2f0eef306420ff3070319d992aaf [
file
] [
log
] [
blame
]
#include
<math.h>
#include
<stdio.h>
#include
<stdlib.h>
int
main
(
int
argc
,
char
**
argv
)
{
double
x
;
if
(
argc
>
1
)
x
=
atof
(
argv
[
1
]);
else
x
=
3
;
x
=
sin
(
x
);
if
(
x
>
0
)
printf
(
"OK\n"
);
return
0
;
}