mirror of
https://github.com/neovim/neovim.git
synced 2024-12-31 17:13:26 -07:00
Fix S_ISLNK definition in os_defs.h.
This commit is contained in:
parent
59eaba2894
commit
3ce8de7c8f
@ -58,7 +58,7 @@
|
|||||||
# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
||||||
#endif
|
#endif
|
||||||
#if !defined(S_ISLNK) && defined(S_IFLNK)
|
#if !defined(S_ISLNK) && defined(S_IFLNK)
|
||||||
# define S_IFLNK(m) (((m) & S_IFMT) == S_IFLNK)
|
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
|
||||||
#endif
|
#endif
|
||||||
#if !defined(S_ISBLK) && defined(S_IFBLK)
|
#if !defined(S_ISBLK) && defined(S_IFBLK)
|
||||||
# define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
|
# define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
|
||||||
|
Loading…
Reference in New Issue
Block a user