summaryrefslogtreecommitdiffstats
path: root/lib/libm/src/s_nextafterf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* C99: "The nextafter functions return y if x equals y."martynas2011-04-161-1/+1
| | | | | | | | Therefore, in nextafter() and nextafterf(): - if(x==y) return x; /* x=y, return x */ - if(x==y) return y; /* x=y, return y */ This matters for negative zero inputs of x or y.
* rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andderaadt2009-10-271-4/+0
| | | | | | | unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms
* We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.millert2002-02-191-6/+2
|
* initial import of NetBSD treederaadt1995-10-181-0/+70