summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
Commit message (Expand)AuthorAgeFilesLines
* Fix use of an uninitialized pointer introduced in a previous revision.Mike Makonnen2003-02-061-0/+1
* Back out previous. Many people disagreed with removing the warning.Tim J. Robbins2003-01-301-0/+8
* Remove runtime warning about gets().Tim J. Robbins2003-01-301-8/+0
* Lock stdin on entry, unlock on return, use __sgetc() instead of getchar()Tim J. Robbins2003-01-301-5/+9
* Remove part of my stateful locale patch that slipped into the previous rev.Tim J. Robbins2003-01-261-3/+0
* Initial implementation of the C99 feature whereby calling freopen() withTim J. Robbins2003-01-262-2/+94
* Lock the stream before calling __sfileno() to retrieve the file descriptor.Tim J. Robbins2003-01-131-2/+10
* Add missing word to "Return Values" section.Tim J. Robbins2003-01-131-0/+1
* The macro versions of putc() and putchar() are gone.Tim J. Robbins2003-01-101-9/+3
* There is no macro version of getc() anymore.Tim J. Robbins2003-01-101-2/+1
* Bring the list of function-like macros up to date with reality.Tim J. Robbins2003-01-101-28/+20
* spell multiple correctly.Alfred Perlstein2003-01-101-1/+1
* Document clearerr_unlocked(), feof_unlocked(), ferror_unlocked()Tim J. Robbins2003-01-102-3/+38
* Add a manual page for flockfile(), ftrylockfile(), and funlockfile().Tim J. Robbins2003-01-102-1/+106
* Document getc_unlocked(), getchar_unlocked(), putc_unlocked(),Tim J. Robbins2003-01-103-6/+68
* Add function versions of getchar_unlocked(), getc_unlocked(),Tim J. Robbins2003-01-102-1/+96
* Remove an unused variable: mbresult.Tim J. Robbins2003-01-071-1/+0
* #include <stdlib.h> for free()'s prototype.Tim J. Robbins2003-01-071-0/+1
* Note that the printf(3) and scanf(3) family of functions don't deal withTim J. Robbins2003-01-062-2/+14
* #include "local.h" to make __svfscanf()'s prototype visible.Tim J. Robbins2003-01-033-0/+3
* Reset the stream orientation to 0 (unoriented) in freopen(), as requiredTim J. Robbins2003-01-031-0/+1
* mdoc(7) police: Deal with self-xrefs.Ruslan Ermilov2002-12-241-1/+1
* Document the fact that the printf() family of functions return negativeTim J. Robbins2002-12-201-2/+14
* C99 standardised the vscanf() family of functions, update StandardsTim J. Robbins2002-12-201-2/+5
* Write the message to stderr, not file descriptor 2, so that perror()Tim J. Robbins2002-12-191-1/+7
* Use strerror_r() to format the error message so that strerror()'s staticTim J. Robbins2002-12-191-1/+4
* mdoc(7) police: "The .Fa argument.".Ruslan Ermilov2002-12-195-8/+10
* mdoc(7) police: Fixed abuses of the .Ar and .Em macros.Ruslan Ermilov2002-12-181-2/+2
* mdoc(7) police: "The .Fn function".Ruslan Ermilov2002-12-185-5/+21
* mdoc(7) police: tiny nits.Ruslan Ermilov2002-12-091-4/+4
* Consistently mark std(in|out|err) with .Dv, because that's how theyRuslan Ermilov2002-12-0412-17/+17
* mdoc(7) police: markup overhaul.Ruslan Ermilov2002-12-046-14/+22
* mdoc(7) police: formatting nits.Ruslan Ermilov2002-11-291-1/+1
* libc_r wasn't so tied to libc for 22 months.Ruslan Ermilov2002-11-181-3/+1
* bde points out that the LIBC_MAJOR macro doesn't exist and requestsWarner Losh2002-11-141-3/+6
* Restore Peter's version of static __sF. There's too much pain for itWarner Losh2002-11-101-1/+4
* Backout "compatibility hack" for __sF.Alfred Perlstein2002-11-042-9/+1
* Provide a hook to make __sF visible outside of libc for commercial appsAlfred Perlstein2002-11-022-1/+9
* No need to include floatio.h here: vfscanf() no longer uses anythingTim J. Robbins2002-11-012-2/+0
* Make __sF static. This can not be allowed to exist in 5.x.Alfred Perlstein2002-10-311-1/+1
* Cross-reference putc(3).Tim J. Robbins2002-10-281-0/+1
* The ORIENTLOCK macro is no longer needed since all functions useTim J. Robbins2002-10-251-7/+0
* Cross-reference fmtcheck(3).Tim J. Robbins2002-10-201-0/+1
* Give in on the __sF stuff. I have a better fix in mind that is futurePeter Wemm2002-10-191-1/+1
* Indent code example with one tab, not two, for consistency with the rest.Tim J. Robbins2002-10-191-8/+8
* Fix off-by-one error when pushing back a multibyte sequence inTim J. Robbins2002-10-171-2/+6
* Make part of the previous change clearer; check flags for SUPPRESS directlyTim J. Robbins2002-10-171-7/+7
* The field width for single-byte string conversions (%c, %s, %[) is theTim J. Robbins2002-10-171-33/+88
* Count field width correctly for suppressed multibyte fields (%*lc,Tim J. Robbins2002-10-161-60/+84
* Set the error bit on the stream if an encoding error occurs. ImproveTim J. Robbins2002-10-166-15/+52