Subversion Repositories Kolibri OS

Rev

Rev 6536 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6536 Rev 8777
Line 144... Line 144...
144
 
144
 
Line 145... Line 145...
145
#define	TMP_MAX		26
145
#define	TMP_MAX		26
146
 
146
 
-
 
147
#define	stdin	(_REENT->_stdin)
-
 
148
#define	stdout	(_REENT->_stdout)
147
#define	stdin	(_REENT->_stdin)
149
 
-
 
150
#ifndef _NO_STDERR
-
 
151
  #define	stderr	(_REENT->_stderr)
-
 
152
#else
Line 148... Line 153...
148
#define	stdout	(_REENT->_stdout)
153
  #define stderr stdout
149
#define	stderr	(_REENT->_stderr)
154
#endif
150
 
155
 
Line -... Line 156...
-
 
156
#define _stdin_r(x)	((x)->_stdin)
-
 
157
#define _stdout_r(x)	((x)->_stdout)
151
#define _stdin_r(x)	((x)->_stdin)
158
#define _stderr_r(x)	((x)->_stderr)
152
#define _stdout_r(x)	((x)->_stdout)
159
 
153
#define _stderr_r(x)	((x)->_stderr)
160
 
Line 154... Line 161...
154
 
161