Skip to content
Snippets Groups Projects
Commit 97625601 authored by Basile Desloges's avatar Basile Desloges
Browse files

[eacsl:runtime] Use define values instead of literals to represent file...

[eacsl:runtime] Use define values instead of literals to represent file descriptor number of stdout and stderr
parent 671fdbfa
No related branches found
No related tags found
No related merge requests found
...@@ -370,8 +370,8 @@ static void _format(void* putp, putcf putf, char *fmt, va_list va) { ...@@ -370,8 +370,8 @@ static void _format(void* putp, putcf putf, char *fmt, va_list va) {
} }
} }
static void _charc_stdout (void* p, char c) { write(1,&c,1); } static void _charc_stdout (void* p, char c) { write(STDOUT_FILENO,&c,1); }
static void _charc_stderr (void* p, char c) { write(2,&c,1); } static void _charc_stderr (void* p, char c) { write(STDERR_FILENO,&c,1); }
static void _charc_file (void* p, char c) { write((size_t)p,&c,1); } static void _charc_file (void* p, char c) { write((size_t)p,&c,1); }
static void _charc_literal (void* p, char c) { static void _charc_literal (void* p, char c) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment