1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

STDIN_FILENO, STDOUT_FILENO and STDERR_FILENO clone macros

This commit is contained in:
Yang Tse 2008-01-23 06:11:11 +00:00
parent 5ee3f41e0d
commit 9bd28a021f

View File

@ -158,6 +158,18 @@ char **__crt0_glob_function (char *arg)
#endif /* __DJGPP__ */
#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_BAR 1