Skip to content

Commit 168ab68

Browse files
authored
filesystem_utilities.c: use INODE64 on 64-bit, but not on 32-bit (#997)
Closes: #993
1 parent a0cb608 commit 168ab68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/filesystem_utilities.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <sys/stat.h>
22
#include <dirent.h>
33

4-
#if defined(__APPLE__) && !defined(__aarch64__) && !defined(__POWERPC__)
4+
#if defined(__APPLE__) && !defined(__aarch64__) && !defined(__ppc__) && !defined(__i386__)
55
DIR * opendir$INODE64( const char * dirName );
66
struct dirent * readdir$INODE64( DIR * dir );
77
#define opendir opendir$INODE64

0 commit comments

Comments
 (0)