| Commit message (Expand) | Author | Age | Files | Lines |
* | Use nl_langinfo(RADIXCHAR) instead of localeconv()->decimal_point in |  matthew | 2012-06-26 | 1 | -2/+5 |
* | Add support for C99 %ls and %lc format directives, as been documented in |  stsp | 2011-07-06 | 1 | -5/+146 |
* | Fix out of date comment; no code change |  millert | 2010-12-22 | 1 | -2/+2 |
* | The ssizearg member of union arg is pointless if it isn't of type ssize_t |  guenther | 2010-10-17 | 1 | -2/+2 |
* | Fix the handle locking in stdio to use flockfile/funlockfile |  kurt | 2009-11-09 | 1 | -3/+14 |
* | skip the \' formatting flag, grouping is not implemented; ok deraadt@ |  naddy | 2009-10-28 | 1 | -1/+5 |
* | Back out previous commit, as it caused too much growth for the install |  guenther | 2009-10-22 | 1 | -14/+3 |
* | Fix the handle locking in stdio to use flockfile/funlockfile |  guenther | 2009-10-21 | 1 | -3/+14 |
* | teach gdtoa & its subroutines that malloc can fail; in which case |  martynas | 2009-10-16 | 1 | -1/+17 |
* | use decimal point from locale. ok millert@ |  martynas | 2008-10-21 | 1 | -3/+3 |
* | - replace dtoa w/ David's gdtoa, version 2008-03-15 |  martynas | 2008-09-07 | 1 | -161/+195 |
* | comment fixes |  martynas | 2008-08-27 | 1 | -7/+7 |
* | - add F |  martynas | 2008-08-26 | 1 | -8/+17 |
* | don't zero-pad special values. ok millert@ |  martynas | 2008-08-26 | 1 | -1/+3 |
* | - handle sign of negative zero. use sign dtoa sets |  martynas | 2008-07-10 | 1 | -11/+6 |
* | Fix ssize_t vs. size_t mismatch |  millert | 2008-05-16 | 1 | -2/+2 |
* | C99 says that for each va_copy() there must be a matching va_end(). |  millert | 2008-05-16 | 1 | -30/+59 |
* | Don't forget to va_end() the va_list we get from va_copy(). From FreeBSD. |  millert | 2008-05-13 | 1 | -1/+2 |
* | add missing header for getpagesize |  chl | 2008-05-05 | 1 | -1/+2 |
* | %hhd was being printed as if %hd was specified |  deraadt | 2007-11-28 | 1 | -11/+16 |
* | Remove and simplify an impossible case (if *p = memchr(cp, 0, prec), |  ray | 2007-01-30 | 1 | -9/+7 |
* | Fix potential int overflow for printf(3) when passing in very large |  millert | 2007-01-16 | 1 | -13/+50 |
* | try first mmap() allocation at pagesize, no need to re-mmap at every power |  deraadt | 2006-11-26 | 1 | -1/+4 |
* | make __dtoa & strtod() thread-safe useing the same method as newer gdtoa |  deraadt | 2006-10-29 | 1 | -4/+11 |
* | check mmap for failure. the helper functions using it return -1, but |  tedu | 2006-04-29 | 1 | -36/+43 |
* | Use long long and intmax_t instead of quad_t throughout. Adapted in |  millert | 2006-01-13 | 1 | -97/+92 |
* | Adapt things to use __type_t instead of _BSD_TYPE_T_ |  millert | 2006-01-06 | 1 | -2/+2 |
* | Missing piece from previous commit |  millert | 2005-12-19 | 1 | -1/+2 |
* | Add %hhd to *printf and *scanf as well as %z to *scanf. This was |  millert | 2005-12-19 | 1 | -2/+9 |
* | support %jd from c99, although intmax_t may not be available. |  tedu | 2005-09-23 | 1 | -1/+4 |
* | zap remaining rcsid. |  espie | 2005-08-08 | 1 | -4/+1 |
* | next citrus step. |  espie | 2005-06-17 | 1 | -1/+2 |
* | Fix rearranging of parameters for quad types. |  espie | 2005-06-08 | 1 | -11/+24 |
* | Change internals of FILE: reuse the unget buffer field to access an |  espie | 2005-04-30 | 1 | -1/+3 |
* | deregister + ansify, no change in object code. ok deraadt@ millert@ |  otto | 2004-09-28 | 1 | -40/+23 |
* | typo fix, from the original diff in PR 3932 |  brad | 2004-09-25 | 1 | -2/+2 |
* | oops |  deraadt | 2004-09-25 | 1 | -2/+2 |
* | access one too far away; from claus; ok millert |  deraadt | 2004-09-24 | 1 | -3/+3 |
* | explain why mmap; pointed out by claus, pr 3932 |  deraadt | 2004-09-24 | 1 | -2/+4 |
* | Add 'z' and 't' modifiers for printing size_t and ptrdiff_t. |  otto | 2004-09-18 | 1 | -4/+59 |
* | Handle ll's correctly for positional args. Problem spotted by hin@, |  otto | 2004-09-16 | 1 | -2/+7 |
* | signed vs unsigned |  deraadt | 2004-09-14 | 1 | -2/+2 |
* | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 1 | -6/+2 |
* | When positional arguments need more memory for storage (more than 8 args), |  deraadt | 2003-05-16 | 1 | -16/+30 |
* | Use va_copy() for varargs assignemnt. va_copy() is standard with C99 |  drahn | 2002-10-24 | 1 | -3/+3 |
* | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. |  millert | 2002-02-19 | 1 | -6/+1 |
* | Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree) |  millert | 2002-02-17 | 1 | -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. |  millert | 2002-02-16 | 1 | -4/+4 |
* | KNF, i need this for what comes next.. |  deraadt | 2001-12-05 | 1 | -47/+46 |
* | Fix a bug with the %e flag introduced in a -Wall pass. The original |  millert | 2001-08-13 | 1 | -2/+2 |