libc: Change __{stderr, stdout} to {stderr, stdout}
This commit is contained in:
parent
3b83d7ccaf
commit
0e64c57e10
@ -13,16 +13,16 @@ typedef struct
|
|||||||
int f_err;
|
int f_err;
|
||||||
} FILE;
|
} FILE;
|
||||||
|
|
||||||
|
extern FILE* stderr;
|
||||||
|
extern FILE* stdout;
|
||||||
|
#define stdout stdout
|
||||||
|
#define stderr stderr
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
long f_offset;
|
long f_offset;
|
||||||
} fpos_t;
|
} fpos_t;
|
||||||
|
|
||||||
extern FILE* __stderr; // The standard error stream.
|
|
||||||
extern FILE* __stdout; // The standard output stream.
|
|
||||||
#define stderr __stderr
|
|
||||||
#define stdout __stdout
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
FILE* __stderr;
|
FILE* stderr;
|
||||||
FILE* __stdout;
|
FILE* stdout;
|
||||||
|
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user