diff options
Diffstat (limited to 'otherlibs/unix/dup2.c')
-rw-r--r-- | otherlibs/unix/dup2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/dup2.c b/otherlibs/unix/dup2.c index e7cecf835..96e841ff3 100644 --- a/otherlibs/unix/dup2.c +++ b/otherlibs/unix/dup2.c @@ -38,7 +38,7 @@ static int do_dup2(int fd1, int fd2) return res; } -value unix_dup2(value fd1, value fd2) /* ML */ +value unix_dup2(value fd1, value fd2) { close(Int_val(fd2)); if (do_dup2(Int_val(fd1), Int_val(fd2)) == -1) uerror("dup2", Nothing); |