diff options
Diffstat (limited to 'lib/libc/sys')
| -rw-r--r-- | lib/libc/sys/ioctl.c | 3 | ||||
| -rw-r--r-- | lib/libc/sys/mount.c | 3 | ||||
| -rw-r--r-- | lib/libc/sys/umount.c | 3 | ||||
| -rw-r--r-- | lib/libc/sys/umount2.c | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/lib/libc/sys/ioctl.c b/lib/libc/sys/ioctl.c index 45fbdca7..0b9c3b82 100644 --- a/lib/libc/sys/ioctl.c +++ b/lib/libc/sys/ioctl.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_ioctl + + #include <stdarg.h> // for va_arg, va_end, va_list, va_start #include <syscall.h> // for __syscall_3, syscall diff --git a/lib/libc/sys/mount.c b/lib/libc/sys/mount.c index 4ef617b9..c42dc90e 100644 --- a/lib/libc/sys/mount.c +++ b/lib/libc/sys/mount.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_mount + + #include <sys/mount.h> // for mount #include <syscall.h> // for __syscall_5, syscall diff --git a/lib/libc/sys/umount.c b/lib/libc/sys/umount.c index 91ce5a77..ed2b2edc 100644 --- a/lib/libc/sys/umount.c +++ b/lib/libc/sys/umount.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_umount2 + + #include <syscall.h> // for __syscall_2, syscall diff --git a/lib/libc/sys/umount2.c b/lib/libc/sys/umount2.c index 12f37f98..17ff73aa 100644 --- a/lib/libc/sys/umount2.c +++ b/lib/libc/sys/umount2.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_umount2 + + #include <syscall.h> // for __syscall_2, syscall |
