Commit 134e6225 by Ian Lance Taylor

runtime: Fix typo in dup3 fallback implementation.

From Uros Bizjak.

From-SVN: r203820
parent 377d9792
......@@ -47,7 +47,7 @@ accept4 (int sockfd __attribute__ ((unused)),
int
dup3 (int oldfd __attribute__ ((unused)),
int newfd __attribute__ ((unused)),
int flags __attribtue__ ((unused)))
int flags __attribute__ ((unused)))
{
errno = ENOSYS;
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment