diff options
Diffstat (limited to 'lib/libc/stat/fchmod.c')
| -rw-r--r-- | lib/libc/stat/fchmod.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc/stat/fchmod.c b/lib/libc/stat/fchmod.c index 22593fd6..c7b0b0f3 100644 --- a/lib/libc/stat/fchmod.c +++ b/lib/libc/stat/fchmod.c @@ -1,5 +1,8 @@ -#include <sys/stat.h> -#include <syscall.h> +#include "asm/unistd_64.h" // for __NR_fchmod + +#include <sys/stat.h> // for fchmod +#include <sys/types.h> // for mode_t +#include <syscall.h> // for __syscall_2, syscall int fchmod(int fildes, mode_t mode) { |
