From: solar <> Date: Tue, 11 Jul 2006 06:22:25 +0000 (+0000) Subject: Added a TODO about wide orientation reset. X-Git-Url: https://pd.if.org/git/?a=commitdiff_plain;h=5a904c5de1fba7e44ecfe2a140cf6e277d247702;p=pdclib.old Added a TODO about wide orientation reset. --- diff --git a/functions/stdio/freopen.c b/functions/stdio/freopen.c index be4b95e..13992de 100644 --- a/functions/stdio/freopen.c +++ b/functions/stdio/freopen.c @@ -25,6 +25,7 @@ struct _PDCLIB_file_t * freopen( const char * _PDCLIB_restrict filename, const c { /* FIXME: This is ad-hoc (to make the vprintf() testdriver work), and must be checked. */ /* FIXME: If filename is NULL, change mode. */ + /* TODO: This function can change wide orientation of a stream */ if ( filename == NULL ) return NULL; if ( stream->status & _PDCLIB_WROTELAST ) fflush( stream ); if ( stream->status & _PDCLIB_LIBBUFFER ) free( stream->buffer );