forked from Imagelibrary/rtems
@@ -495,28 +495,3 @@ telnetd_dflt_spawn(const char *name, unsigned int priority, unsigned int stackSi
|
||||
}
|
||||
return task_id;
|
||||
}
|
||||
|
||||
/* convenience routines for CEXP (retrieve stdio descriptors
|
||||
* from reent structure)
|
||||
*/
|
||||
#ifdef stdin
|
||||
static __inline__ FILE *
|
||||
_stdin(void) { return stdin; }
|
||||
#undef stdin
|
||||
FILE *stdin(void);
|
||||
FILE *stdin(void) { return _stdin(); }
|
||||
#endif
|
||||
#ifdef stdout
|
||||
static __inline__ FILE * _stdout(void) { return stdout; }
|
||||
#undef stdout
|
||||
FILE *stdout(void);
|
||||
FILE *stdout(void) { return _stdout(); }
|
||||
#endif
|
||||
#ifdef stderr
|
||||
static __inline__ FILE * _stderr(void) { return stderr; }
|
||||
#undef stderr
|
||||
FILE *stderr(void);
|
||||
FILE *stderr(void) { return _stderr(); }
|
||||
#endif
|
||||
|
||||
/* MUST NOT USE stdin & friends below here !!!!!!!!!!!!! */
|
||||
|
||||
Reference in New Issue
Block a user