aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/src/s_nexttoward.c
Commit message (Collapse)AuthorAgeFilesLines
* lib/msun: Cleanup after $FreeBSD$ removalSteve Kargl2024-01-281-1/+0
| | | | | | | Remove no longer needed explicit inclusion of sys/cdefs.h. PR: 276669 MFC after: 1 week
* lib: Remove ancient SCCS tags.Warner Losh2023-11-271-1/+0
| | | | | | | | Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
| | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
* Fix a bug where the wrong argument was passed to INSERT_WORDS().David Schultz2011-02-101-2/+2
| | | | | | | | | | This bug results in a type mismatch that happens to be harmless because of the way INSERT_WORDS() works. Submitted by: bde Notes: svn path=/head/; revision=218510
* s/rcsid/__FBSDID/David Schultz2008-02-221-3/+2
| | | | Notes: svn path=/head/; revision=176451
* Implement nexttoward and nextafterl; the latter is also known asDavid Schultz2005-03-071-0/+73
nexttowardl. These are not needed on machines where long doubles look like IEEE-754 doubles, so the implementation only supports the usual long double formats with 15-bit exponents. Anything bizarre, such as machines where floating-point and integer data have different endianness, will cause problems. This is the case with big endian ia64 according to libc/ia64/_fpmath.h. Please contact me if you managed to get a machine running this way. Notes: svn path=/head/; revision=143217