summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
Commit message (Expand)AuthorAgeFilesLines
* Initialize "nconv" to a reasonable value in all code paths. Prior toColin Percival2008-08-041-1/+3
* Fix a few bugs with the _gettemp() routine which implements mkstemp(),John Baldwin2008-07-281-11/+26
* Use arc4random_uniform(3) since modulo size is not power of 2Andrey A. Chernov2008-07-221-1/+1
* Fix a bogon in the previous commit and add some missing error checks.David Schultz2008-06-291-9/+12
* Correctly handle malloc() failure. While here, reduce the code size aDavid Schultz2008-06-294-103/+162
* Factor out the code that builds the argument table. We don't need separateDavid Schultz2008-06-291-130/+47
* Reduce the level of duplication between vfprintf() and vfwprintf()David Schultz2008-06-295-975/+888
* Begin de-spaghettifying the code that handles positional arguments.David Schultz2008-06-292-188/+306
* Remove useless call to getdtablesize(2) in fdopen(3) and its uselessAntoine Brodin2008-05-101-4/+0
* Retire the __fgetcookie(), __fgetpendout(), and __fsetfileno() accessorsJohn Baldwin2008-05-052-27/+0
* Expose FILE's internals to the world again in all their glory. RestoreJohn Baldwin2008-05-0510-140/+23
* Add __fgetcookie(), __fgetpendout() and __fsetfileno() to the privateMarcel Moolenaar2008-05-041-0/+6
* Unbreak build: gnu sort has been configured to grope inside structMarcel Moolenaar2008-05-031-0/+7
* Unbreak build: libftpio gropes inside struct __sFILE. ImplementMarcel Moolenaar2008-05-031-0/+14
* Next round of stdio changes: Remove all inlining of stdio operations andJohn Baldwin2008-05-0212-112/+200
* Fix a leak in the recent fixes for file descriptors > SHRT_MAX. In theJohn Baldwin2008-04-221-0/+1
* Next stage of stdio cleanup: Retire __sFILEX and merge the fields back intoJohn Baldwin2008-04-1726-143/+72
* Updates for changes in the way printf() handles hex floating pointDavid Schultz2008-04-121-4/+5
* Add <limits.h> for SHRT_MAX.John Baldwin2008-02-273-0/+3
* File descriptors are an int, but our stdio FILE object uses a short to holdJohn Baldwin2008-02-273-0/+39
* Move all the xprintf-related symbols to FBSDprivate_1.0.David Schultz2007-12-181-9/+13
* Catch up with vfprintf.c,v 1.77.David Schultz2007-12-181-0/+1
* Remove some test instrumentation. (The Symbol.map changes broke it anyway.)David Schultz2007-12-092-8/+0
* Add rewind() to the list of functions which may fail and set errnoAndrey A. Chernov2007-06-181-1/+2
* Add mbstate clear missed in one of the cases.Andrey A. Chernov2007-06-181-5/+6
* We should never zero-pad INF or NaN (yielding silly strings like "00inf")David Schultz2007-05-081-0/+1
* Use C comments since we now preprocess these files with CPP.Daniel Eischen2007-04-291-3/+5
* Grammer correction from: emastePoul-Henning Kamp2007-04-191-1/+1
* Loosen return value spec for fputs to be standards compliant so peoplePoul-Henning Kamp2007-04-191-5/+2
* o Add ENVIRONMENT section and mention there that TMPDIR is ignoredMaxim Konovalov2007-03-161-1/+14
* Remove 3rd clause, renumber, ok per emailWarner Losh2007-01-121-4/+1
* Per Regents of the University of Calfornia letter, remove advertisingWarner Losh2007-01-09100-400/+0
* Fix rounding of 0xf for hex fp formats.David Schultz2007-01-031-2/+2
* Revert the rev. 1.4, it causes breakage on most arches except i386.Konstantin Belousov2006-10-231-4/+1
* Workaround for (what seems to be) compiler error for gcc 3.4.6. OnKonstantin Belousov2006-10-211-1/+4
* file == NULL:Andrey A. Chernov2006-10-161-9/+14
* Honor errno obtained from __sflagsAndrey A. Chernov2006-10-161-1/+3
* Back out ftruncate error handling. There can some file tipesAndrey A. Chernov2006-10-161-9/+2
* Do real seekAndrey A. Chernov2006-10-151-3/+11
* Use correct type in va_arg argument.Alexander Kabaev2006-09-212-2/+2
* Markup fixes.Ruslan Ermilov2006-09-171-1/+1
* Remove alpha left-overs.Ruslan Ermilov2006-08-221-1/+1
* Oops, correct the weak reference (s/fclose/fcloseall).Daniel Eischen2006-04-221-1/+1
* Now that libc has fcloseall(), remove _cleanup() from the listDaniel Eischen2006-04-221-1/+0
* Add fcloseall() to libc. This removes the need to export _cleanup().Daniel Eischen2006-04-225-4/+60
* Add missing #if's for NO_FLOATING_POINTPoul-Henning Kamp2006-04-015-4/+16
* Add __collate_load_error and __collate_range_cmp to the list ofDaniel Eischen2006-03-301-0/+1
* Add each directory's symbol map file to SYM_MAPS.Daniel Eischen2006-03-131-0/+2
* Add symbol maps and initial symbol version definitions to libc.Daniel Eischen2006-03-131-0/+144
* Fix the %Q printf extension to behave as expectedPoul-Henning Kamp2006-03-021-19/+9