Skip to content

Commit 8943788

Browse files
aeubanksgithub-actions[bot]
authored andcommitted
Automerge: [compiler-rt] Fix usage of stdin/stdout (#171560)
From #170809. Causes compile errors when `stdin`/`stdout` are #defined in stdio.h.
2 parents 9995bec + e7015c9 commit 8943788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_posix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ uptr internal_waitpid(int pid, int *status, int options);
6868

6969
int internal_fork();
7070
bool internal_spawn(const char* argv[], const char* envp[], pid_t* pid,
71-
fd_t stdin, fd_t stdout);
71+
fd_t fd_stdin, fd_t fd_stdout);
7272

7373
int internal_sysctl(const int *name, unsigned int namelen, void *oldp,
7474
uptr *oldlenp, const void *newp, uptr newlen);

0 commit comments

Comments
 (0)