<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test/lib/libc/gen/fpclassify.3, branch stable/6</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test/atom?h=stable%2F6</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test/atom?h=stable%2F6'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/'/>
<updated>2005-01-27T05:46:17Z</updated>
<entry>
<title>- Move the functions presently described in in ieee(3) to their own</title>
<updated>2005-01-27T05:46:17Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2005-01-27T05:46:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=29bf6af8904f9833bbc9c0e5f2219f785defe550'/>
<id>urn:sha1:29bf6af8904f9833bbc9c0e5f2219f785defe550</id>
<content type='text'>
  manpages.  They are not very related, so separating them makes it
  easier to add meaningful cross-references and extend some of the
  descriptions.
- Move the part of math(3) that discusses IEEE 754 to the ieee(3)
  manpage.
</content>
</entry>
<entry>
<title>Bump document date for recent changes.</title>
<updated>2004-07-09T06:37:44Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-07-09T06:37:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=ad93428d7ab2ed2494d437da16fa6421c9490575'/>
<id>urn:sha1:ad93428d7ab2ed2494d437da16fa6421c9490575</id>
<content type='text'>
Prodded by:	ru
</content>
</entry>
<entry>
<title>Document these functions as being in libm, not libc.  Some of them</title>
<updated>2004-07-09T03:33:00Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-07-09T03:33:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=3bdf026534bea69f1b893f161d23126f59068216'/>
<id>urn:sha1:3bdf026534bea69f1b893f161d23126f59068216</id>
<content type='text'>
*are* in libc for historical reasons, but programmers should not rely
on that fact.

Also remove a BUGS section that is not relevant here.
</content>
</entry>
<entry>
<title>Assorted mdoc(7) fixes.</title>
<updated>2003-06-01T19:19:59Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2003-06-01T19:19:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=0e35e492fcbda3368c44c083ea1a21edbe11d997'/>
<id>urn:sha1:0e35e492fcbda3368c44c083ea1a21edbe11d997</id>
<content type='text'>
</content>
</entry>
<entry>
<title>o Implement C99 classification macros isfinite(), isinf(), isnan(),</title>
<updated>2003-02-12T20:03:41Z</updated>
<author>
<name>Mike Barcroft</name>
<email>mike@FreeBSD.org</email>
</author>
<published>2003-02-12T20:03:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=5d62092f9440cea08dd1af170f272671d36499b9'/>
<id>urn:sha1:5d62092f9440cea08dd1af170f272671d36499b9</id>
<content type='text'>
  isnormal().  The current isinf() and isnan() are perserved for
  binary compatibility with 5.0, but new programs will use the macros.
o Implement C99 comparison macros isgreater(), isgreaterequal(),
  isless(), islessequal(), islessgreater(), isunordered().

Submitted by:	David Schultz &lt;dschultz@uclink.Berkeley.EDU&gt;
</content>
</entry>
<entry>
<title>Implement fpclassify():</title>
<updated>2003-02-08T20:37:55Z</updated>
<author>
<name>Mike Barcroft</name>
<email>mike@FreeBSD.org</email>
</author>
<published>2003-02-08T20:37:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=8cf5ed5125ca8f57fa6f27892f3fbda25a52d354'/>
<id>urn:sha1:8cf5ed5125ca8f57fa6f27892f3fbda25a52d354</id>
<content type='text'>
o Add a MD header private to libc called _fpmath.h; this header
  contains bitfield layouts of MD floating-point types.
o Add a MI header private to libc called fpmath.h; this header
  contains bitfield layouts of MI floating-point types.
o Add private libc variables to lib/libc/$arch/gen/infinity.c for
  storing NaN values.
o Add __double_t and __float_t to &lt;machine/_types.h&gt;, and provide
  double_t and float_t typedefs in &lt;math.h&gt;.
o Add some C99 manifest constants (FP_ILOGB0, FP_ILOGBNAN, HUGE_VALF,
  HUGE_VALL, INFINITY, NAN, and return values for fpclassify()) to
  &lt;math.h&gt; and others (FLT_EVAL_METHOD, DECIMAL_DIG) to &lt;float.h&gt; via
  &lt;machine/float.h&gt;.
o Add C99 macro fpclassify() which calls __fpclassify{d,f,l}() based
  on the size of its argument.  __fpclassifyl() is never called on
  alpha because (sizeof(long double) == sizeof(double)), which is good
  since __fpclassifyl() can't deal with such a small `long double'.

This was developed by David Schultz and myself with input from bde and
fenner.

PR:		23103
Submitted by:	David Schultz &lt;dschultz@uclink.Berkeley.EDU&gt;
		(significant portions)
Reviewed by:	bde, fenner (earlier versions)
</content>
</entry>
</feed>
