X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=93e27191aaf9a06d78d9253e3db96406d9080e51;hb=8f67eac83402119dfdd2627da82c65d5a349cb02;hp=1c47c17a974636e3acdb3af3fbe8ec28ac17cdfb;hpb=8024ab6eb8c841b330458354788d7f3a86bee7dd;p=pdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 1c47c17..93e2719 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -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;