diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-19 01:13:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-19 01:13:53 +0000 |
commit | 9588159bf4646ec3fa5983cabbcb208f3e5496b3 (patch) | |
tree | 9fa77221c06b826e225dabdd30388ba462ceb951 | |
parent | 4c52a17e526207e43f950ade82567e3a1d4d81c5 (diff) |
include sys/mount.h for everyone
-rw-r--r-- | libc/sysdeps/linux/common/umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/umount.c b/libc/sysdeps/linux/common/umount.c index 1480b63cd..550003d1b 100644 --- a/libc/sysdeps/linux/common/umount.c +++ b/libc/sysdeps/linux/common/umount.c @@ -8,11 +8,11 @@ */ #include "syscalls.h" +#include <sys/mount.h> /* arch provides umount() syscall */ #ifdef __NR_umount -# include <sys/mount.h> _syscall1(int, umount, const char *, specialfile); /* arch provides umount2() syscall */ |