| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Submitted by: Dave Glowacki <dglo@ssec.wisc.edu>
Notes:
svn path=/head/; revision=15164
|
| |
|
|
|
|
|
|
| |
converted them into .Fn macros where appropriate. Also fixed
up some minor formatting problems.
Notes:
svn path=/head/; revision=14855
|
| |
|
|
|
|
|
|
|
|
| |
nonstandard normal version and the standard threaded version.
Removed a bogus L in a constant. fpos_t's aren't longs, and casting to
fpos_t would be verbose.
Notes:
svn path=/head/; revision=14840
|
| |
|
|
|
|
|
| |
Reviewed by: mpp
Notes:
svn path=/head/; revision=14839
|
| |
|
|
|
|
|
| |
Fixed bogus cross references and a misordered line.
Notes:
svn path=/head/; revision=14838
|
| |
|
|
| |
Notes:
svn path=/head/; revision=14810
|
| |
|
|
| |
Notes:
svn path=/head/; revision=14790
|
| |
|
|
|
|
|
|
|
|
|
| |
the precision; ANSI X3J11 is not crystal clear but certainly says
that the precision specifies the number of /digits/, and signs
and "0x" aren't really digits.
NetBSD already has a similar patch.
Notes:
svn path=/head/; revision=14727
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
resides in read-only memory is going to cause the program to core dump,
and this is commmon with older pre-ANSI C programs.
(I've scratched my head over this one at 3 in the morning before
while trying to port some ancient program)
Suggested by: Gary Kline <kline@tera.com>
Notes:
svn path=/head/; revision=14099
|
| |
|
|
| |
Notes:
svn path=/head/; revision=13750
|
| |
|
|
|
|
|
|
|
| |
Submitted by: John Birrel(L?)
changes for threadsafe operations
Notes:
svn path=/head/; revision=13545
|
| |
|
|
|
|
|
|
|
|
|
| |
man pages.
Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp>
Giles Lean <giles@nemeton.com.au>
<soda@sra.co.jp>
Notes:
svn path=/head/; revision=13511
|
| |
|
|
|
|
|
| |
Added compile-time warning to an old funky function.
Notes:
svn path=/head/; revision=11667
|
| |
|
|
|
|
|
|
|
|
| |
IMHO, the run-time warning should come out, but I'm not game to start that
fight yet... This uses a feature of the gnu linker.
Inspired by: NetBSD
Notes:
svn path=/head/; revision=11185
|
| |
|
|
| |
Notes:
svn path=/head/; revision=11064
|
| |
|
|
|
|
|
| |
Noticed by: Brian Tao, Bruce Evans
Notes:
svn path=/head/; revision=10100
|
| |
|
|
| |
Notes:
svn path=/head/; revision=8870
|
| |
|
|
| |
Notes:
svn path=/head/; revision=8534
|
| |
|
|
|
|
|
|
|
|
| |
Fix printf("%g", 0.0) - print "0", not "0.". The previous fixes in this
area had one non-cosmetic (non-)change that caused this bug.
Bruce
Notes:
svn path=/head/; revision=7649
|
| |
|
|
|
|
|
| |
parenthesization/precedence bug.
Notes:
svn path=/head/; revision=7036
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
commit by bde.
Fix bugs in floating point formatting. The 4.4lite version is similar
to revision 1.3 in old-cvs and is missing all of jtc's fixes in revision
1.4 in old-cvs. Revision 1.2 in ncvs fixed one of the old bugs but
introduced at least one new one (for %.0e).
old-cvs log:
revision 1.4
date: 1993/11/04 19:38:22; author: jtc; state: Exp; lines: +33 -20
My work from NetBSD to make printf() & friends ANSI C compliant.
Fixes several bugs in floating point formatting:
1. Trailing zeros were being stripped with %e format.
2. %g/%G formats incorrect.
3. Lots of other nits.
Notes:
svn path=/head/; revision=7033
|
| |
|
|
|
|
|
| |
correctly.
Notes:
svn path=/head/; revision=5707
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From: Chris Torek <torek@bsdi.com>
Here is a semi-official patch (apply to /usr/src/lib/libc/stdio/fseek.c,
rebuild libc, install). The current code fails when the seek:
- is optimized, and
- is to just past the end of the block currently in the buffer, and
- is followed by another seek with no intervening read operation, and
- the destination of subsequent seek is within the block left in the
buffer (seeking to the beginning of a block does not force a read,
so the buffer still contains the previous block)
so it is indeed rather obscure.
I may have a different `final' fix, as this one `loses' the buffer
contents on a seek that goes just past the end of the current block.
[Footnote: seeks are optimized only on read-only opens of regular
files that are buffered by the file's optimal I/O size. This is
what you get with fopen(path, "r") and no call to setvbuf().]
Obtained from: [ BSDI mailing list ]
Notes:
svn path=/head/; revision=4169
|
| |
|
|
|
|
|
|
| |
my machine, and a simple static (genassym) and shared (sysctl) executable
both work. Still to be done: RPCand YP merge.
Notes:
svn path=/head/; revision=1849
|
|
|
Notes:
svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1573
|