| Commit message (Expand) | Author | Age | Files | Lines |
* | The printf format string component %n is a nearly turning-complete gadget. |  deraadt | 2020-10-27 | 1 | -2/+42 |
* | Use a simple forward search to find '%' in the format string instead of |  tb | 2017-11-21 | 1 | -35/+12 |
* | Store the return value of mbrtowc() in a size_t, not int. |  millert | 2016-08-29 | 1 | -13/+15 |
* | When a precision is specified for a string format use strnlen() |  millert | 2016-08-27 | 1 | -17/+7 |
* | % is escaped with more %, not backslash. |  tedu | 2016-08-17 | 1 | -3/+3 |
* | Generate syslog warnings for %s fmt strings NULL to "(null)" conversions. |  deraadt | 2016-08-17 | 1 | -2/+18 |
* | Return EOVERFLOW, not ENOMEM for overflow conditions to match POSIX. |  millert | 2016-06-06 | 1 | -3/+3 |
* | remove a nop assignment that has been #if 0'd since 1996 |  mmcc | 2016-01-19 | 1 | -5/+1 |
* | Fix lots of bugs. |  schwarze | 2016-01-04 | 1 | -18/+28 |
* | Remove NULL-checks before free() and a few related dead assignments. |  mmcc | 2015-12-28 | 1 | -7/+4 |
* | Delete the final, inscrutable NOSTRICT and VARARGS lint comments |  guenther | 2015-09-29 | 1 | -2/+1 |
* | Add framework for resolving (pun intended) libc namespace issues, using |  guenther | 2015-08-31 | 1 | -1/+2 |
* | Show the sign for NaN as per POSIX; from Elliott Hughes. |  daniel | 2014-12-21 | 1 | -4/+3 |
* | Add #ifndef NO_PRINTF_PERCENT_N. Since we are fully standardized, we |  deraadt | 2014-05-03 | 1 | -1/+5 |
* | It's still safe to assumed 'signed' exists |  guenther | 2014-03-19 | 1 | -3/+3 |
* | Pull in gdtoa.h instead of declaring __dtoa() and __freedtoa() directly |  guenther | 2013-11-01 | 1 | -3/+2 |
* | Fix the combination of 'j' format flag and the XPG "<num>$" modifier. |  guenther | 2013-03-02 | 1 | -2/+11 |
* | 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 |