]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fopen.c
Reworking internal file handling.
[pdclib] / functions / stdio / fopen.c
index 1c47c17a974636e3acdb3af3fbe8ec28ac17cdfb..93e27191aaf9a06d78d9253e3db96406d9080e51 100644 (file)
@@ -64,7 +64,7 @@ struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const cha
        buffered if and only if it can be determined not to refer to an
        interactive device."
     */
-    rc->status |= _PDCLIB_LIBBUFFER | _IOLBF;
+    rc->status |= _IOLBF;
     /* TODO: Setting mbstate */
     /* Adding to list of open files */
     rc->next = _PDCLIB_filelist;