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