summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vfprintf.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Use nl_langinfo(RADIXCHAR) instead of localeconv()->decimal_point inmatthew2012-06-261-2/+5
* Add support for C99 %ls and %lc format directives, as been documented instsp2011-07-061-5/+146
* Fix out of date comment; no code changemillert2010-12-221-2/+2
* The ssizearg member of union arg is pointless if it isn't of type ssize_tguenther2010-10-171-2/+2
* Fix the handle locking in stdio to use flockfile/funlockfilekurt2009-11-091-3/+14
* skip the \' formatting flag, grouping is not implemented; ok deraadt@naddy2009-10-281-1/+5
* Back out previous commit, as it caused too much growth for the installguenther2009-10-221-14/+3
* Fix the handle locking in stdio to use flockfile/funlockfileguenther2009-10-211-3/+14
* teach gdtoa & its subroutines that malloc can fail; in which casemartynas2009-10-161-1/+17
* use decimal point from locale. ok millert@martynas2008-10-211-3/+3
* - replace dtoa w/ David's gdtoa, version 2008-03-15martynas2008-09-071-161/+195
* comment fixesmartynas2008-08-271-7/+7
* - add Fmartynas2008-08-261-8/+17
* don't zero-pad special values. ok millert@martynas2008-08-261-1/+3
* - handle sign of negative zero. use sign dtoa setsmartynas2008-07-101-11/+6
* Fix ssize_t vs. size_t mismatchmillert2008-05-161-2/+2
* C99 says that for each va_copy() there must be a matching va_end().millert2008-05-161-30/+59
* Don't forget to va_end() the va_list we get from va_copy(). From FreeBSD.millert2008-05-131-1/+2
* add missing header for getpagesizechl2008-05-051-1/+2
* %hhd was being printed as if %hd was specifiedderaadt2007-11-281-11/+16
* Remove and simplify an impossible case (if *p = memchr(cp, 0, prec),ray2007-01-301-9/+7
* Fix potential int overflow for printf(3) when passing in very largemillert2007-01-161-13/+50
* try first mmap() allocation at pagesize, no need to re-mmap at every powerderaadt2006-11-261-1/+4
* make __dtoa & strtod() thread-safe useing the same method as newer gdtoaderaadt2006-10-291-4/+11
* check mmap for failure. the helper functions using it return -1, buttedu2006-04-291-36/+43
* Use long long and intmax_t instead of quad_t throughout. Adapted inmillert2006-01-131-97/+92
* Adapt things to use __type_t instead of _BSD_TYPE_T_millert2006-01-061-2/+2
* Missing piece from previous commitmillert2005-12-191-1/+2
* Add %hhd to *printf and *scanf as well as %z to *scanf. This wasmillert2005-12-191-2/+9
* support %jd from c99, although intmax_t may not be available.tedu2005-09-231-1/+4
* zap remaining rcsid.espie2005-08-081-4/+1
* next citrus step.espie2005-06-171-1/+2
* Fix rearranging of parameters for quad types.espie2005-06-081-11/+24
* Change internals of FILE: reuse the unget buffer field to access anespie2005-04-301-1/+3
* deregister + ansify, no change in object code. ok deraadt@ millert@otto2004-09-281-40/+23
* typo fix, from the original diff in PR 3932brad2004-09-251-2/+2
* oopsderaadt2004-09-251-2/+2
* access one too far away; from claus; ok millertderaadt2004-09-241-3/+3
* explain why mmap; pointed out by claus, pr 3932deraadt2004-09-241-2/+4
* Add 'z' and 't' modifiers for printing size_t and ptrdiff_t.otto2004-09-181-4/+59
* Handle ll's correctly for positional args. Problem spotted by hin@,otto2004-09-161-2/+7
* signed vs unsignedderaadt2004-09-141-2/+2
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
* When positional arguments need more memory for storage (more than 8 args),deraadt2003-05-161-16/+30
* Use va_copy() for varargs assignemnt. va_copy() is standard with C99drahn2002-10-241-3/+3
* We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.millert2002-02-191-6/+1
* Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)millert2002-02-171-5/+3
* Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.millert2002-02-161-4/+4
* KNF, i need this for what comes next..deraadt2001-12-051-47/+46
* Fix a bug with the %e flag introduced in a -Wall pass. The originalmillert2001-08-131-2/+2