Browse Source

fixed freopen() bug by deleting some code

eck 34 years ago
parent
commit
8f8bca227a
1 changed files with 0 additions and 5 deletions
  1. 0 5
      lang/cem/libcc.ansi/stdio/freopen.c

+ 0 - 5
lang/cem/libcc.ansi/stdio/freopen.c

@@ -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;