Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
lib: Remove ancient SCCS tags.Remove ancient SCCS tags from the tree, automated scripting, with twominor fixup to keep things compiling. All the common forms in the treewere removed with a perl s
lib: Remove ancient SCCS tags.Remove ancient SCCS tags from the tree, automated scripting, with twominor fixup to keep things compiling. All the common forms in the treewere removed with a perl script.Sponsored by: Netflix
show more ...
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
Add section .note.GNU-stack for assembly files used by 386 and amd64.
We've been lax about matching END() macros in asm code for some time. Thisis used to set the ELF size attribute for functions. It isn't normallycritical but some things can make use of it (gdb fo
We've been lax about matching END() macros in asm code for some time. Thisis used to set the ELF size attribute for functions. It isn't normallycritical but some things can make use of it (gdb for stack traces).Valgrind needs it so I'm adding it in. The problem is present on allbranches and on both i386 and amd64.
Import amd64 assembly implementations of div(3) family from NetBSD.Obtained from: NetBSD
Eliminate gdtoa.mk and move its contents to ${MACHINE_ARCH}/Makefile.inc.The purpose of having a separate file involved an abandoned scheme thatwould have kept contrib/gdtoa out of the include path
Eliminate gdtoa.mk and move its contents to ${MACHINE_ARCH}/Makefile.inc.The purpose of having a separate file involved an abandoned scheme thatwould have kept contrib/gdtoa out of the include path for the rest of libc.
Replace our ancient dtoa/strtod implementation with the gdtoapackage, a more recent, generalized set of routines. Among thechanges:- Declare strtof() and strtold() in stdlib.h.- Add glue to libc
Replace our ancient dtoa/strtod implementation with the gdtoapackage, a more recent, generalized set of routines. Among thechanges:- Declare strtof() and strtold() in stdlib.h.- Add glue to libc to support these routines for all kinds of ``long double''.- Update printf() to reflect the fact that dtoa works slightly differently now.As soon as I see that nothing has blown up, I will killsrc/lib/libc/stdlib/strtod.c. Soon printf() will be ableto use the new routines to output long doubles without lossof precision, but numerous bugs in the existing code mustbe addressed first.Reviewed by: bde (briefly), mike (mentor), obrien