mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 12:05:06 -05:00
STDIN_FILENO, STDOUT_FILENO and STDERR_FILENO clone macros
This commit is contained in:
parent
5ee3f41e0d
commit
9bd28a021f
12
src/main.c
12
src/main.c
@ -158,6 +158,18 @@ char **__crt0_glob_function (char *arg)
|
|||||||
#endif /* __DJGPP__ */
|
#endif /* __DJGPP__ */
|
||||||
#endif /* MSDOS */
|
#endif /* MSDOS */
|
||||||
|
|
||||||
|
#ifndef STDIN_FILENO
|
||||||
|
#define STDIN_FILENO fileno(stdin)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef STDOUT_FILENO
|
||||||
|
#define STDOUT_FILENO fileno(stdout)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef STDERR_FILENO
|
||||||
|
#define STDERR_FILENO fileno(stderr)
|
||||||
|
#endif
|
||||||
|
|
||||||
#define CURL_PROGRESS_STATS 0 /* default progress display */
|
#define CURL_PROGRESS_STATS 0 /* default progress display */
|
||||||
#define CURL_PROGRESS_BAR 1
|
#define CURL_PROGRESS_BAR 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user