| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement xlocale APIs from Darwin, mainly for use by libc++. This adds a | theraven | 2011-11-20 | 42 | -182/+805 |
* | Add support for the 'x' mode option in fopen() as specified in the C1X | das | 2011-10-21 | 2 | -49/+60 |
* | Because we call __printf_out() with a on-stack buffer, also call | pjd | 2011-03-06 | 1 | -2/+4 |
* | Fix various issues in how %#T is handled: | pjd | 2011-03-06 | 1 | -7/+11 |
* | When reopening a stream backed by an open file descriptor, do not close | jhb | 2010-12-09 | 1 | -12/+9 |
* | Remove two unused variables, left over from the refactoring in r180104. | gavin | 2010-12-02 | 1 | -6/+0 |
* | Update the documentation to reflect changes to the implementation in | das | 2010-11-30 | 1 | -14/+14 |
* | Revert changes of 'assure' to 'ensure' made in r211936. | brucec | 2010-09-11 | 1 | -1/+1 |
* | Fix incorrect usage of 'assure' and 'insure'. | brucec | 2010-08-28 | 1 | -1/+1 |
* | mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to the | uqs | 2010-05-13 | 4 | -98/+98 |
* | mdoc: fix parenthesis | uqs | 2010-05-11 | 1 | -2/+2 |
* | mdoc: use macro for +- that is understood by mdocml | uqs | 2010-05-11 | 2 | -4/+4 |
* | I feel this wording of the history is more clear. | obrien | 2010-04-05 | 2 | -9/+6 |
* | - Use an initializer macro to initialize fields in 'fake' FILE objects used | jhb | 2010-03-11 | 12 | -39/+22 |
* | In _gettemp(), check that the length of the path doesn't exceed | jh | 2010-02-28 | 1 | -0/+4 |
* | %U was macroized in mdoc(7), escape. | ru | 2010-02-16 | 1 | -1/+1 |
* | Give a less silly response to a silly request. | cperciva | 2010-01-10 | 2 | -3/+40 |
* | Remove unnecessary quoting and markup, add missing punctuation. | brueffer | 2010-01-08 | 1 | -3/+2 |
* | Use vsprintf instead of rolling our own. | delphij | 2009-12-21 | 1 | -9/+1 |
* | Use vsscanf instead of rolling our own. | delphij | 2009-12-21 | 1 | -24/+1 |
* | K&R -> ANSI prototype. | delphij | 2009-12-21 | 1 | -8/+3 |
* | (no commit message) | matteo | 2009-12-16 | 1 | -1/+2 |
* | Fix many "function declaration isn't a prototype" warnings in libc. | ed | 2009-12-05 | 2 | -6/+6 |
* | Fix the dprintf() prototype. | brueffer | 2009-12-02 | 1 | -2/+2 |
* | Eliminate more dead stores. | wollman | 2009-11-25 | 1 | -1/+1 |
* | Make all three if conditions look similar by always initializing nsec | wollman | 2009-11-25 | 1 | -1/+2 |
* | In __mbsconv(), if prec was zero, nconv could have been used | wollman | 2009-11-25 | 1 | -1/+1 |
* | Eliminate dead store. | wollman | 2009-11-25 | 1 | -1/+1 |
* | Better glibc compatibility for getline/getdelim: | das | 2009-10-04 | 1 | -2/+2 |
* | Make the description of `b' a little better. | ed | 2009-09-09 | 1 | -1/+1 |
* | Fix fwrite() to return 0 when size or nmemb are zero. | ed | 2009-07-12 | 2 | -4/+9 |
* | Return -1 instead of 0 upon reaching EOF. This is somewhat ill-advised | das | 2009-04-06 | 2 | -4/+6 |
* | Add dprintf() and vdprintf() from POSIX.1-2008. Like getline(), | das | 2009-03-04 | 6 | -32/+198 |
* | Rewrite asprintf() as a wrapper around vasprintf(), thus reducing the | das | 2009-03-02 | 1 | -43/+22 |
* | The argument corresponding to %zn is supposed to be an ssize_t *, not | das | 2009-03-02 | 2 | -6/+6 |
* | Use C99-style initializers. No functional change. | das | 2009-03-01 | 1 | -4/+9 |
* | Replace a dozen lines of code with a call to strnlen() / wcsnlen(). | das | 2009-02-28 | 2 | -33/+2 |
* | - Add getdelim(), getline(), stpncpy(), strnlen(), wcsnlen(), | das | 2009-02-28 | 8 | -5/+377 |
* | Make sure %zd treats negative arguments properly on 32-bit platforms. | das | 2009-02-28 | 3 | -5/+8 |
* | Better wording for clearing EOF indicator. | trhodes | 2009-01-28 | 1 | -0/+4 |
* | Remove another comment about clearing EOF indicator. | trhodes | 2009-01-28 | 1 | -4/+1 |
* | Update the manpage to reflect r145172. | das | 2009-01-28 | 1 | -2/+1 |
* | Remove comment about clearerr() being the only method of clearing | trhodes | 2009-01-28 | 1 | -3/+1 |
* | Add support for multibyte thousands_sep encodings, e.g., U+066C. | das | 2009-01-22 | 3 | -173/+225 |
* | - Add support for multibyte decimal_point encodings, e.g., U+066B. | das | 2009-01-19 | 2 | -23/+49 |
* | Add support for multibyte decimal_point encodings, e.g., U+066B. | das | 2009-01-19 | 2 | -23/+35 |
* | When f[w]printf() is called on an unbuffered file like stdout, it | das | 2009-01-17 | 2 | -14/+23 |
* | Simplify printf's inlined output buffering routines. On amd64, this | das | 2009-01-17 | 1 | -18/+18 |
* | Introduce a local variable and use it instead of passed in parameter | rdivacky | 2009-01-15 | 2 | -2/+6 |
* | Reduce code duplication by moving functions that are identical in both | das | 2009-01-15 | 3 | -427/+216 |