1/*
2 * We assumes that 64-bit inodes are on by default, so we build the 32-bit
3 * inode (undecorated) variants here (unless the platform only supports
4 * 64-bit inodes, then which we do nothing).
5 */
6
7#undef __DARWIN_64_BIT_INO_T
8#define __DARWIN_64_BIT_INO_T 0
9#include <sys/cdefs.h>
10
11#if __DARWIN_ONLY_64_BIT_INO_T == 0
12#define __DARWIN_APR_BUILDING_32_BIT_INODE
13#include "filestat.c"
14#endif /* __DARWIN_ONLY_64_BIT_INO_T == 0 */
15