aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdio
Commit message (Expand)AuthorAgeFilesLines
* mdoc(7) police:Ruslan Ermilov2002-01-093-3/+6
* All information from the "BUGS" section not belonging in "SECURITYChris Costello2002-01-062-48/+34
* Add new "SECURITY CONSIDERATIONS" sections.Chris Costello2002-01-063-0/+48
* Fix some style bugsAlexey Zelkin2001-12-171-15/+18
* Also fix cases when thousands separator should be put before number. ForAlexey Zelkin2001-12-131-2/+4
* Respect locale while handling of \' flag.Alexey Zelkin2001-12-131-22/+63
* mdoc(7) police: Minor formatting nits and optimizations to rev. 1.34.Ruslan Ermilov2001-12-121-57/+67
* * localeconv() usage is not FLOATING_POINT specific anymore (due to "'" flagAlexey Zelkin2001-12-071-3/+3
* Remove blank line.Bill Fenner2001-12-071-1/+0
* Implement several of the c99 updates to printf(3):Bill Fenner2001-11-302-211/+458
* Back out national digits support, POSIX explicetely disallows it:Andrey A. Chernov2001-11-291-53/+55
* Don't ever assume that isdigit() is always subset of isxdigit()Andrey A. Chernov2001-11-281-1/+1
* Allow national (non-ASCII) digitsAndrey A. Chernov2001-11-281-55/+53
* mdoc(7) police: sort xrefs.Ruslan Ermilov2001-11-201-2/+2
* Cross-reference the fdopen and fileno manpages.Murray Stokely2001-11-142-1/+3
* In > LONG_MAX test use sseek return value and not _offset which can be notAndrey A. Chernov2001-10-251-3/+4
* Help to recover from bad seek (i.e. negative or too big) happens beyondAndrey A. Chernov2001-10-242-5/+12
* Back out read buffer invalidating via __SMOD.Andrey A. Chernov2001-10-232-7/+2
* Change comment explaining another usage of __SMODAndrey A. Chernov2001-10-231-2/+2
* Disallow fseek() optimization in internal read buffer, if pointer is moved byAndrey A. Chernov2001-10-231-0/+5
* Fixed style bugs in previous commit.Bruce Evans2001-10-151-15/+15
* Make this compile on ia64.Doug Rabson2001-10-141-25/+46
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-0120-23/+23
* 1) If __SAPP stream is not seekable, remove __SAPP flag on first call insteadAndrey A. Chernov2001-09-071-3/+10
* For now just back out seek error checking in __SAPP case, it cause problemsAndrey A. Chernov2001-09-071-2/+2
* When __SOPT is cleared, clear __SOFF too.Andrey A. Chernov2001-09-031-1/+1
* Re-arrange my funopen(3) fix to minimize differences with original stdio code,Andrey A. Chernov2001-09-036-83/+91
* Internal seeks are overoptimized. They should remember fp->_offset only forAndrey A. Chernov2001-09-022-3/+1
* Fix bug in off_t overflow checking: if fp->_offset overflows, just removeAndrey A. Chernov2001-09-021-5/+3
* Typo seek(2) -> lseek(2)Andrey A. Chernov2001-09-021-1/+1
* Move all stdio internal flags processing and setting out of __sread(),Andrey A. Chernov2001-09-029-55/+89
* Save errno before function call and restore it on success (because manyAndrey A. Chernov2001-09-012-2/+11
* Remove even more unneded checks, original code can't overflows in that placeAndrey A. Chernov2001-09-011-5/+1
* Remove two checks unneeded now (can't happens)Andrey A. Chernov2001-09-011-4/+0
* Make fseek(... SEEK_CUR) fails if current file-position is unspecified.Andrey A. Chernov2001-09-012-8/+8
* Note that prev. commit addition is for ftell/ftelloAndrey A. Chernov2001-09-011-2/+6
* Describe ESPIPE as result of unspecified file-position indicator value.Andrey A. Chernov2001-09-011-2/+7
* Describe file-position behaviour from POSIXAndrey A. Chernov2001-09-011-0/+5
* Strict in the POSIX sence, if file position is unspecified after ungetc() atAndrey A. Chernov2001-09-011-6/+4
* If lseek to wrong value sucessfully happens despite all pre-checks, set __SERRAndrey A. Chernov2001-09-012-1/+4
* If position is underflowed, don't try to hide that fact by recovery, justAndrey A. Chernov2001-09-011-17/+7
* Back out disabling ungetc() at 0, use different solution:Andrey A. Chernov2001-09-015-34/+48
* Add originally missing __sinit() call.Andrey A. Chernov2001-08-311-0/+4
* Simplify offset underflow checks even moreAndrey A. Chernov2001-08-311-12/+2
* Describe that we disallow ungetc at offset 0 now.Andrey A. Chernov2001-08-311-1/+4
* Disallow ungetc at offset 0 (to prevent negative offset happens), so simplifyAndrey A. Chernov2001-08-312-22/+15
* Drop buffer first, _then_ ask for real positionAndrey A. Chernov2001-08-311-4/+4
* The same big piece of ftell code repeated in 3 places. Simplify things movingAndrey A. Chernov2001-08-313-94/+30
* If file offset is smaller than internal buffer character left count, just dropAndrey A. Chernov2001-08-312-16/+30
* Initialize _offset to 0 in fopen(), it helps to optimize fseek/ftellAndrey A. Chernov2001-08-311-0/+2