Deleted Added
full compact
42c42
< "$FreeBSD: head/lib/libc/stdio/rewind.c 81817 2001-08-17 09:57:11Z ache $";
---
> "$FreeBSD: head/lib/libc/stdio/rewind.c 82743 2001-09-01 15:28:24Z ache $";
54a55,56
> int serrno = errno;
>
60c62
< if (_fseeko(fp, (off_t)0, SEEK_SET, 1) == 0)
---
> if (_fseeko(fp, (off_t)0, SEEK_SET, 1) == 0) {
61a64,65
> errno = serrno;
> }
63d66
< /* errno required by POSIX to sense error, don't zero it here */