X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=93e27191aaf9a06d78d9253e3db96406d9080e51;hb=11b081417bc53095a3ae58ae0265cc09ad982947;hp=1c47c17a974636e3acdb3af3fbe8ec28ac17cdfb;hpb=251788c85afb1a268ba4248fea1909e8afc46a45;p=pdclib.old 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;