| Commit message (Expand) | Author | Age | Files | Lines |
* | Add strfmon(3) implementation. It still contains few XXX's because I lost | phantom | 2001-09-05 | 2 | -3/+618 |
* | mdoc(7) police: markup and minor content fixes. | ru | 2001-09-05 | 2 | -73/+61 |
* | Use fseeko() instead of fseek() (u->offset is already an off_t), and mark | des | 2001-09-05 | 1 | -4/+4 |
* | Add Thomas Moestl and Chris Faulhaber to the author list for POSIX.1e | rwatson | 2001-09-05 | 1 | -0/+2 |
* | Portability fix: use unsigned cast to guaranteed positive part of expression | ache | 2001-09-04 | 2 | -2/+2 |
* | Remove rcsids and unneded include | ache | 2001-09-04 | 6 | -34/+12 |
* | 'acc' is not initialized in one hypotetical case, fix it | ache | 2001-09-04 | 4 | -8/+8 |
* | 1) repair the return value in the PAM_RETURN() macro (Side effects!!). | markm | 2001-09-04 | 1 | -2/+3 |
* | Locale *is* used in strto*l*(), at least for isspace(), so remove | ache | 2001-09-04 | 8 | -58/+105 |
* | Implement _setjmp()/_longjmp(). | dfr | 2001-09-04 | 1 | -125/+345 |
* | This does not describe sched_{get,set}scheduler. | dd | 2001-09-03 | 1 | -2/+3 |
* | Don't capitalize jail(2) in the middle of a sentence. | dd | 2001-09-03 | 1 | -1/+1 |
* | Remove bogus implementation of _setjmp/_longjmp | dfr | 2001-09-03 | 1 | -140/+0 |
* | PT_STEP in ptrace(2) man page is described as 'addr and data fields | murray | 2001-09-03 | 1 | -3/+3 |
* | Check for malloc failure in a couple of cases | kris | 2001-09-03 | 2 | -0/+8 |
* | When __SOPT is cleared, clear __SOFF too. | ache | 2001-09-03 | 1 | -1/+1 |
* | Re-arrange my funopen(3) fix to minimize differences with original stdio code, | ache | 2001-09-03 | 6 | -83/+91 |
* | o Sync up prototypes for cap_size() and cap_copy_ext() with | rwatson | 2001-09-02 | 1 | -2/+2 |
* | Internal seeks are overoptimized. They should remember fp->_offset only for | ache | 2001-09-02 | 2 | -3/+1 |
* | Fix bug in off_t overflow checking: if fp->_offset overflows, just remove | ache | 2001-09-02 | 1 | -5/+3 |
* | Remove MLINKS seek.2 to lseek.2, we don't have seek.2 syscall | ache | 2001-09-02 | 1 | -1/+0 |
* | Typo seek(2) -> lseek(2) | ache | 2001-09-02 | 1 | -1/+1 |
* | Move all stdio internal flags processing and setting out of __sread(), | ache | 2001-09-02 | 9 | -55/+89 |
* | Another punctuation fix (missing comma ending preposition). | chris | 2001-09-01 | 1 | -1/+1 |
* | o Mention the fact that specifying a fileid of 0 searches all loaded | chris | 2001-09-01 | 1 | -1/+4 |
* | Save errno before function call and restore it on success (because many | ache | 2001-09-01 | 2 | -2/+11 |
* | Remove even more unneded checks, original code can't overflows in that place | ache | 2001-09-01 | 1 | -5/+1 |
* | Remove two checks unneeded now (can't happens) | ache | 2001-09-01 | 1 | -4/+0 |
* | Make fseek(... SEEK_CUR) fails if current file-position is unspecified. | ache | 2001-09-01 | 2 | -8/+8 |
* | Note that prev. commit addition is for ftell/ftello | ache | 2001-09-01 | 1 | -2/+6 |
* | Describe ESPIPE as result of unspecified file-position indicator value. | ache | 2001-09-01 | 1 | -2/+7 |
* | Describe file-position behaviour from POSIX | ache | 2001-09-01 | 1 | -0/+5 |
* | Strict in the POSIX sence, if file position is unspecified after ungetc() at | ache | 2001-09-01 | 1 | -6/+4 |
* | If lseek to wrong value sucessfully happens despite all pre-checks, set __SERR | ache | 2001-09-01 | 2 | -1/+4 |
* | If position is underflowed, don't try to hide that fact by recovery, just | ache | 2001-09-01 | 1 | -17/+7 |
* | Back out disabling ungetc() at 0, use different solution: | ache | 2001-09-01 | 5 | -34/+48 |
* | o Attach cap_cmp.c and cap_copy.c to the build. | rwatson | 2001-09-01 | 1 | -1/+6 |
* | Describe EOVERFLOW I implement per POSIX. | ache | 2001-08-31 | 1 | -9/+17 |
* | Add originally missing __sinit() call. | ache | 2001-08-31 | 1 | -0/+4 |
* | Simplify offset underflow checks even more | ache | 2001-08-31 | 1 | -12/+2 |
* | Describe that we disallow ungetc at offset 0 now. | ache | 2001-08-31 | 1 | -1/+4 |
* | Disallow ungetc at offset 0 (to prevent negative offset happens), so simplify | ache | 2001-08-31 | 2 | -22/+15 |
* | Drop buffer first, _then_ ask for real position | ache | 2001-08-31 | 1 | -4/+4 |
* | The same big piece of ftell code repeated in 3 places. Simplify things moving | ache | 2001-08-31 | 3 | -94/+30 |
* | If file offset is smaller than internal buffer character left count, just drop | ache | 2001-08-31 | 2 | -16/+30 |
* | Initialize _offset to 0 in fopen(), it helps to optimize fseek/ftell | ache | 2001-08-31 | 1 | -0/+2 |
* | Detect fp->_offset overflow on read | ache | 2001-08-31 | 1 | -9/+23 |
* | Add manpage for inet_net_ntop(3) and inet_net_pton(3). | ru | 2001-08-31 | 3 | -1/+162 |
* | Use ``.Rv -std'' wherever possible. | ru | 2001-08-31 | 43 | -232/+71 |
* | o Use .Fx to refer to FreeBSD | rwatson | 2001-08-31 | 1 | -1/+2 |