Merge pull request #1309 from facebook/islink

fixed UTIL_isLink() for Mac OS-X
This commit is contained in:
Yann Collet
2018-09-06 18:01:10 -07:00
committed by GitHub
+2 -1
View File
@@ -323,7 +323,8 @@ UTIL_STATIC U32 UTIL_isLink(const char* infilename)
#if defined(_BSD_SOURCE) \
|| (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) \
|| (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) \
|| (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L))
|| (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) \
|| (defined(__APPLE__) && defined(__MACH__))
int r;
stat_t statbuf;
r = lstat(infilename, &statbuf);