Skip to content

Commit

Permalink
filesystem_utilities.c: use INODE64 on 64-bit, but not on 32-bit (#997)
Browse files Browse the repository at this point in the history
Closes: #993
  • Loading branch information
barracuda156 authored Feb 18, 2024
1 parent a0cb608 commit 168ab68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystem_utilities.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <sys/stat.h>
#include <dirent.h>

#if defined(__APPLE__) && !defined(__aarch64__) && !defined(__POWERPC__)
#if defined(__APPLE__) && !defined(__aarch64__) && !defined(__ppc__) && !defined(__i386__)
DIR * opendir$INODE64( const char * dirName );
struct dirent * readdir$INODE64( DIR * dir );
#define opendir opendir$INODE64
Expand Down

0 comments on commit 168ab68

Please sign in to comment.