ntdll: Use #ifdef instead of #if to check for _DARWIN_FEATURE_64_BIT_INODE.

This commit is contained in:
Gerald Pfeifer 2009-12-25 11:08:53 +01:00 committed by Alexandre Julliard
parent 6f36945f2b
commit e8d387fd45
1 changed files with 2 additions and 2 deletions

View File

@ -1378,7 +1378,7 @@ done:
#elif defined HAVE_GETDIRENTRIES
#if _DARWIN_FEATURE_64_BIT_INODE
#ifdef _DARWIN_FEATURE_64_BIT_INODE
/* Darwin doesn't provide a version of getdirentries with support for 64-bit
* inodes. When 64-bit inodes are enabled, the getdirentries symbol is mapped
@ -1563,7 +1563,7 @@ done:
return res;
}
#if _DARWIN_FEATURE_64_BIT_INODE
#ifdef _DARWIN_FEATURE_64_BIT_INODE
#undef getdirentries
#undef dirent
#endif