2004-01-06 Mark Mitchell <mark@codesourcery.com>
* libc/sys/arm/syscalls.c (unistd.h): Include it. (remap_handle): Use STDIN_FILENO instead of __sfileno(stdin). Similarly for stdout and stderr.
This commit is contained in:
parent
5125f91910
commit
9488c41488
|
@ -1,3 +1,9 @@
|
||||||
|
2004-01-06 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* libc/sys/arm/syscalls.c (unistd.h): Include it.
|
||||||
|
(remap_handle): Use STDIN_FILENO instead of __sfileno(stdin).
|
||||||
|
Similarly for stdout and stderr.
|
||||||
|
|
||||||
2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
|
2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/libc.texinfo: Correct escape character for @ sign
|
* libc/libc.texinfo: Correct escape character for @ sign
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
#include <sys/times.h>
|
#include <sys/times.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <reent.h>
|
#include <reent.h>
|
||||||
|
#include <unistd.h>
|
||||||
#include "swi.h"
|
#include "swi.h"
|
||||||
|
|
||||||
/* Forward prototypes. */
|
/* Forward prototypes. */
|
||||||
|
@ -125,11 +126,11 @@ remap_handle (int fh)
|
||||||
CHECK_INIT(stderr);
|
CHECK_INIT(stderr);
|
||||||
std_files_checked = 1;
|
std_files_checked = 1;
|
||||||
}
|
}
|
||||||
if (fh == __sfileno (stdin))
|
if (fh == STDIN_FILENO)
|
||||||
return monitor_stdin;
|
return monitor_stdin;
|
||||||
if (fh == __sfileno (stdout))
|
if (fh == STDOUT_FILENO)
|
||||||
return monitor_stdout;
|
return monitor_stdout;
|
||||||
if (fh == __sfileno (stderr))
|
if (fh == STDERR_FILENO)
|
||||||
return monitor_stderr;
|
return monitor_stderr;
|
||||||
|
|
||||||
return fh - FILE_HANDLE_OFFSET;
|
return fh - FILE_HANDLE_OFFSET;
|
||||||
|
|
Loading…
Reference in New Issue