diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2008-03-31 12:01:21 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2008-03-31 12:01:21 +0000 |
commit | 57b4252e45134e588365807eef8462db092e0ffb (patch) | |
tree | f8cc8d866703361e98f57783e3292705ce2d5dbc /sys/compat/linux/linux_util.c | |
parent | e314f69fff8224ad1316f460ec97671cb89896ec (diff) |
Add the support for the AT_FDCWD and fd-relative name lookups to the
namei(9).
Based on the submission by rdivacky,
sponsored by Google Summer of Code 2007
Reviewed by: rwatson, rdivacky
Tested by: pho
Notes
Notes:
svn path=/head/; revision=177785
Diffstat (limited to 'sys/compat/linux/linux_util.c')
-rw-r--r-- | sys/compat/linux/linux_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_util.c b/sys/compat/linux/linux_util.c index 222197ccb471..2186e9a39872 100644 --- a/sys/compat/linux/linux_util.c +++ b/sys/compat/linux/linux_util.c @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/bus.h> +#include <sys/fcntl.h> #include <sys/lock.h> #include <sys/malloc.h> #include <sys/linker_set.h> |