mirror of git://gcc.gnu.org/git/gcc.git
runtime: Fix typo in dup3 fallback implementation.
From Uros Bizjak. From-SVN: r203820
This commit is contained in:
parent
377d979275
commit
134e622524
|
|
@ -47,7 +47,7 @@ accept4 (int sockfd __attribute__ ((unused)),
|
||||||
int
|
int
|
||||||
dup3 (int oldfd __attribute__ ((unused)),
|
dup3 (int oldfd __attribute__ ((unused)),
|
||||||
int newfd __attribute__ ((unused)),
|
int newfd __attribute__ ((unused)),
|
||||||
int flags __attribtue__ ((unused)))
|
int flags __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue