[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:
Arthur Eubanks
2025-12-09 20:11:34 -08:00
committed by GitHub
parent ec84deac74
commit e7015c9afb

View File

@@ -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);