~ubuntu-branches/ubuntu/saucy/manpages/saucy

« back to all changes in this revision

Viewing changes to man3/fpclassify.3

  • Committer: Bazaar Package Importer
  • Author(s): Joey Schulze
  • Date: 2010-03-02 21:49:58 UTC
  • mfrom: (1.1.42 upstream) (2.2.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100302214958-69yjgb70t7wrjo3m
New upstream version
. Remove crufty statement in setuid(2) that seteuid() is not in POSIX
(closes: Bug#569812)
. Fix description of 'nochdir' argument in daemon(3) (closes: Bug#554819)
. Fix NAME line in path_resolution(7) (closes: Bug#558300)

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
The other macros provide a short answer to some standard questions.
81
81
.TP 14
82
82
.BI isfinite( x )
83
 
returns a non-zero value if
 
83
returns a nonzero value if
84
84
.br
85
85
(fpclassify(x) != FP_NAN && fpclassify(x) != FP_INFINITE)
86
86
.TP
87
87
.BI isnormal( x )
88
 
returns a non-zero value if
 
88
returns a nonzero value if
89
89
(fpclassify(x) == FP_NORMAL)
90
90
.TP
91
91
.BI isnan( x )
92
 
returns a non-zero value if
 
92
returns a nonzero value if
93
93
(fpclassify(x) == FP_NAN)
94
94
.TP
95
95
.BI isinf( x )
103
103
 
104
104
For
105
105
.BR isinf (),
106
 
the standards merely say that the return value is non-zero
 
106
the standards merely say that the return value is nonzero
107
107
if and only if the argument has an infinite value.
108
108
.SH NOTES
109
109
In glibc 2.01 and earlier,
110
110
.BR isinf ()
111
 
returns a non-zero value (actually: 1) if
 
111
returns a nonzero value (actually: 1) if
112
112
.I x
113
113
is positive infinity or negative infinity.
114
114
(This is all that C99 requires.)
118
118
.BR isgreater (3),
119
119
.BR signbit (3)
120
120
.SH COLOPHON
121
 
This page is part of release 3.23 of the Linux
 
121
This page is part of release 3.24 of the Linux
122
122
.I man-pages
123
123
project.
124
124
A description of the project,