Merge branch 'islink' into Dworkspace

This commit is contained in:
Yann Collet 2018-09-06 17:33:27 -07:00
commit b036b9a177

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);