diff options
Diffstat (limited to 'io/fchmod.c')
-rw-r--r-- | io/fchmod.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/io/fchmod.c b/io/fchmod.c index f0aac92225..99148fee94 100644 --- a/io/fchmod.c +++ b/io/fchmod.c @@ -22,9 +22,7 @@ /* Change the permissions of the file referenced by FD to MODE. */ int -__fchmod (fd, mode) - int fd; - mode_t mode; +__fchmod (int fd, mode_t mode) { if (fd < 0) { |