aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdio
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove spurious "union arg" from printf.hPoul-Henning Kamp2006-02-041-2/+3
* Add missing 's' suffix on alternate rendition of time.Poul-Henning Kamp2006-01-311-1/+1
* Make the %V{is} extension handle a NULL pointer like %s does: output "(null)"Poul-Henning Kamp2006-01-255-1/+187
* Explicitely use a "signed char" instead of a "char", for those archs whereOlivier Houchard2005-12-221-2/+2
* Add an extensible version of our *printf(3) implementation to libcPoul-Henning Kamp2005-12-169-0/+2054
* With current pthread implementations, a mutex initialization willDavid Xu2005-12-163-9/+19
* /* You're not supposed to hit this problem */Poul-Henning Kamp2005-12-131-2/+2
* Fix prototype.Ruslan Ermilov2005-11-232-2/+2
* Use the correct function name as .Nm argument.Christian Brueffer2005-09-181-1/+1
* Move the declaration of __cleanup to libc_private.h as it is used in bothStefan Farfeleder2005-09-122-2/+3
* Remove references to nonexistent "FreeBSD Security Architecture" document.Tim J. Robbins2005-09-053-15/+0
* Include <sys/types.h> and <limits.h> ourselves, don't assume they are includedStefan Farfeleder2005-08-202-0/+2
* Speed up __wcsconv() (and hence the printf() %ls format):Tim J. Robbins2005-07-241-34/+30
* The header glue.h should provide just a declaration for the variableStefan Farfeleder2005-05-131-1/+2
* The correct description for mode "w" isDag-Erling Smørgrav2005-05-041-1/+1
* Be bug-for-bug compatible with the C standard with respect toDavid Schultz2005-04-162-4/+16
* Remove unused variable.Stefan Farfeleder2005-04-081-3/+2
* Fix EOVERFLOW detection in vswprintf(3)Max Khon2005-02-211-4/+5
* Sort sections.Ruslan Ermilov2005-01-203-55/+55
* Scheduled mdoc(7) sweep.Ruslan Ermilov2005-01-111-1/+3
* Document that the length modifier l is ignored for floating pointStefan Farfeleder2004-10-161-1/+3
* Don't add integers to void pointers.Stefan Farfeleder2004-10-031-1/+2
* Don't forget to va_end() the va_list we get from va_copy().Dag-Erling Smørgrav2004-08-262-0/+2
* note that it is the caller's responsibility to free any buffer passedAlfred Perlstein2004-08-241-0/+5
* Fix an off-by-one bug that caused the first character of the buffer toTim J. Robbins2004-08-061-2/+1
* Read directly from the stdio buffer using the new __mbsnrtowcs() interfaceTim J. Robbins2004-07-211-14/+38
* Implement the GNU extensions of mbsnrtowcs() and wcsnrtombs(). These areTim J. Robbins2004-07-211-1/+2
* Use __wcsrtombs() and __sfvwrite() to convert and write the wide characterTim J. Robbins2004-07-211-8/+25
* Call __mbrtowc() and __wcrtomb() directly instead of taking detoursTim J. Robbins2004-07-203-3/+6
* Add a cross reference to fgetwln(3).Tim J. Robbins2004-07-161-0/+1
* Add fgetwln(), a wide character version of fgetln().Tim J. Robbins2004-07-163-2/+192