OSDN Git Service

(split) LDP_man-pages: update original to v3.34.
[linuxjm/LDP_man-pages.git] / original / man3 / matherr.3
index 42dabb1..b4e94c7 100644 (file)
@@ -253,7 +253,7 @@ tgamma(0)   SING    copysign(       y       ERANGE
 log(0) SING    \-HUGE  y       EDOM
 log(x<0)       DOMAIN  \-HUGE  y       EDOM
 log2(0)        SING    \-HUGE  n       EDOM    \" different from log()
-log2(x<0)      DOMAIN  -HUGE   n       EDOM    \" different from log()
+log2(x<0)      DOMAIN  \-HUGE  n       EDOM    \" different from log()
 log10(0)       SING    \-HUGE  y       EDOM
 log10(x<0)     DOMAIN  \-HUGE  y       EDOM
 pow(0.0,0.0)   DOMAIN  0.0     y       EDOM
@@ -295,7 +295,7 @@ should assign as the return value of the math function.
 The following example run, where
 .BR log (3)
 is given an argument of 0.0, does not use
-.BR matherr() :
+.BR matherr ():
 
 .in +4n
 .nf
@@ -314,7 +314,7 @@ is called, and returns 0:
 .RB "$" " ./a.out 0.0 0"
 matherr SING exception in log() function
         args:   0.000000, 0.000000
-        retval: -340282346638528859811704183484516925440.000000
+        retval: \-340282346638528859811704183484516925440.000000
 log: SING error
 errno: Numerical argument out of domain
 x=-340282346638528859811704183484516925440.000000
@@ -332,7 +332,7 @@ is called, and returns a nonzero value:
 .RB "$" " ./a.out 0.0 1"
 matherr SING exception in log() function
         args:   0.000000, 0.000000
-        retval: -340282346638528859811704183484516925440.000000
+        retval: \-340282346638528859811704183484516925440.000000
 x=-340282346638528859811704183484516925440.000000
 .fi
 .in
@@ -351,7 +351,7 @@ and returns a nonzero value:
 .RB "$" " ./a.out 0.0 1 12345.0"
 matherr SING exception in log() function
         args:   0.000000, 0.000000
-        retval: -340282346638528859811704183484516925440.000000
+        retval: \-340282346638528859811704183484516925440.000000
 x=12345.000000
 .fi
 .in