Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cxong/tinydir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLautis Sun <lautis0503@gmail.com>2021-11-11 18:34:31 +0300
committerGitHub <noreply@github.com>2021-11-11 18:34:31 +0300
commitdaf125f265724a2713445b94e7a06e973184ba12 (patch)
treea4096e55fdb52c8d6597bf213c3f78a6d9b9d657
parent64fb1d4376d7580aa1013fdbacddbbeba67bb085 (diff)
Use lstat() for macOS and *BSD (bug fix)lstat_bugfix
Refer to issue #63. Thanks to @wojdyr.
-rw-r--r--tinydir.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tinydir.h b/tinydir.h
index e08eb84..9ef0ac8 100644
--- a/tinydir.h
+++ b/tinydir.h
@@ -543,7 +543,9 @@ int tinydir_readfile(const tinydir_dir *dir, tinydir_file *file)
if (_tstat(
#elif (defined _BSD_SOURCE) || (defined _DEFAULT_SOURCE) \
|| ((defined _XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) \
- || ((defined _POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L))
+ || ((defined _POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) \
+ || ((defined __APPLE__) && (defined __MACH__)) \
+ || (defined BSD)
if (lstat(
#else
if (stat(