diff options
author | Russ Cox <rsc@swtch.com> | 2009-06-16 07:16:25 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2009-06-16 07:16:25 -0700 |
commit | 4a34106c7d95df617021900f5d52a79f5a502288 (patch) | |
tree | bbc0665d9d560f0323ab2b15a66321950fc6dbb2 /src/cmd/9pfuse | |
parent | b8f457199c4228aed8a8049639e85df2c9cbe858 (diff) | |
parent | b8f457199c4228aed8a8049639e85df2c9cbe858 (diff) | |
download | plan9port-4a34106c7d95df617021900f5d52a79f5a502288.tar.gz plan9port-4a34106c7d95df617021900f5d52a79f5a502288.tar.bz2 plan9port-4a34106c7d95df617021900f5d52a79f5a502288.zip |
merge
Diffstat (limited to 'src/cmd/9pfuse')
-rw-r--r-- | src/cmd/9pfuse/fuse_kernel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd/9pfuse/fuse_kernel.h b/src/cmd/9pfuse/fuse_kernel.h index e529b8de..cdedd2fb 100644 --- a/src/cmd/9pfuse/fuse_kernel.h +++ b/src/cmd/9pfuse/fuse_kernel.h @@ -64,13 +64,13 @@ struct fuse_attr { __u64 atime; __u64 mtime; __u64 ctime; -#if (__FreeBSD__ >= 10 && __OSX_VERSION__ >= 100500) +#if (__FreeBSD__ >= 10 && OSX_VERSION >= 100500) __u64 crtime; #endif /* __FreeBSD__ >= 10 */ __u32 atimensec; __u32 mtimensec; __u32 ctimensec; -#if (__FreeBSD__ >= 10 && __OSX_VERSION__ >= 100500) +#if (__FreeBSD__ >= 10 && OSX_VERSION >= 100500) __u32 crtimensec; #endif /* __FreeBSD__ >= 10 */ __u32 mode; @@ -80,7 +80,7 @@ struct fuse_attr { __u32 rdev; #if (__FreeBSD__ >= 10) __u32 flags; /* file flags; see chflags(2) */ -#if __OSX_VERSION__ < 100500 +#if OSX_VERSION < 100500 __u32 padding; #endif /* __OSX_VERSION__ < 100500 */ #endif /* __FreeBSD__ >= 10 */ |