mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 19:08:21 +08:00
[compiler-rt] Fix usage of stdin/stdout (#171560)
From #170809. Causes compile errors when `stdin`/`stdout` are #defined in stdio.h.
This commit is contained in:
@@ -68,7 +68,7 @@ uptr internal_waitpid(int pid, int *status, int options);
|
||||
|
||||
int internal_fork();
|
||||
bool internal_spawn(const char* argv[], const char* envp[], pid_t* pid,
|
||||
fd_t stdin, fd_t stdout);
|
||||
fd_t fd_stdin, fd_t fd_stdout);
|
||||
|
||||
int internal_sysctl(const int *name, unsigned int namelen, void *oldp,
|
||||
uptr *oldlenp, const void *newp, uptr newlen);
|
||||
|
||||
Reference in New Issue
Block a user