diff options
Diffstat (limited to 'io/dup3.c')
-rw-r--r-- | io/dup3.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -24,10 +24,7 @@ open the same file as FD is which setting flags according to FLAGS. Return FD2 or -1. */ int -__dup3 (fd, fd2, flags) - int fd; - int fd2; - int flags; +__dup3 (int fd, int fd2, int flags) { if (fd < 0 || fd2 < 0) { |