From 39fa09dcfd8cec52a18c6db4dd72b244fbf50afc Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Sun, 5 Oct 2025 15:27:41 +0200 Subject: [PATCH] Fix d_fileno define --- include/dirent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dirent.h b/include/dirent.h index 650ecf646..597e5430f 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -19,7 +19,7 @@ extern "C" { typedef struct __dirstream DIR; -#define d_fileno d_ino +#define d_ino d_fileno int closedir(DIR *); DIR *fdopendir(int);