Change example to unchecked-example since on netbsd math functions return 0 instead of NaN on domain errors

db4
Slava Pestov 2009-01-31 21:02:13 -06:00
parent 1194ce38aa
commit 83116c6439
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ ARTICLE: "math.libm" "C standard library math functions"
$nl
"They can be called directly, however there is little reason to do so, since they only implement real-valued functions, and in some cases place restrictions on the domain:"
{ $example "USE: math.functions" "2 acos ." "C{ 0.0 1.316957896924817 }" }
{ $example "USE: math.libm" "2 facos ." "0.0/0.0" }
{ $unchecked-example "USE: math.libm" "2 facos ." "0.0/0.0" }
"Trigonometric functions:"
{ $subsection fcos }
{ $subsection fsin }