fixed freopen() bug by deleting some code

This commit is contained in:
eck 1990-08-28 13:44:48 +00:00
parent bc137646df
commit cd1f6c38a4

View file

@ -90,11 +90,6 @@ freopen(const char *name, const char *mode, FILE *stream)
}
stream->_count = 0;
if (stream->_buf && !(flags & _IONBF) && (flags & _IOWRITE))
if (flags & _IOLBF)
stream->_count = 0;
else stream->_count = stream->_bufsiz;
stream->_fd = fd;
stream->_flags = flags;
return stream;