Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Renumber clauses to reduce diffs to other versions | emaste | 2013-04-23 | 1 | -1/+1 |
| | | | | | | | NetBSD, OpenBSD, and Android's Bionic all number the clauses 1 through 3, so follow suit to make comparison easier. Acked-by: imp@ | ||||
* | Remove two unused variables, left over from the refactoring in r180104. | gavin | 2010-12-02 | 1 | -6/+0 |
| | | | | | | PR: bin/152551 Submitted by: Henning Petersen <henning.petersen t-online.de> MFC after: 2 weeks | ||||
* | The argument corresponding to %zn is supposed to be an ssize_t *, not | das | 2009-03-02 | 1 | -5/+5 |
| | | | | a size_t *, although the distinction is moot in practice. | ||||
* | Make sure %zd treats negative arguments properly on 32-bit platforms. | das | 2009-02-28 | 1 | -3/+6 |
| | | | | | | | Fix harmless but related bugs in %_$zd and %_$tu. PR: 131880 MFC after: 1 week | ||||
* | Fix a bogon in the previous commit and add some missing error checks. | das | 2008-06-29 | 1 | -9/+12 |
| | |||||
* | Correctly handle malloc() failure. While here, reduce the code size a | das | 2008-06-29 | 1 | -95/+142 |
| | | | | bit by removing some calls to the inline function addtype(). | ||||
* | Factor out the code that builds the argument table. We don't need separate | das | 2008-06-29 | 1 | -130/+47 |
| | | | | | | normal and wide character versions of it. No functional change. | ||||
* | Reduce the level of duplication between vfprintf() and vfwprintf() | das | 2008-06-29 | 1 | -0/+788 |
by moving the positional argument handling code to a new file, printf-pos.c, and moving common definitions to printflocal.h. No functional change intended. |