diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-05-09 15:33:00 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-09 15:33:00 -0400 |
commit | 1a3ee71de258b416ca6b80f0a9e3b91460df8dc7 (patch) | |
tree | a59167e50add55b51ed31c65944cfa78ddd1c290 /src/os_unix_defs.h | |
parent | f3dda65de157f2d7c35286018c20cbc7597ed748 (diff) | |
parent | eae498c4c5d34c1d0af40ecb430cbbc23b0a8e97 (diff) | |
download | rneovim-1a3ee71de258b416ca6b80f0a9e3b91460df8dc7.tar.gz rneovim-1a3ee71de258b416ca6b80f0a9e3b91460df8dc7.tar.bz2 rneovim-1a3ee71de258b416ca6b80f0a9e3b91460df8dc7.zip |
Merge pull request #619 from stefan991/mch_stat-cleanup
Replace `struct stat` with `FileInfo`
Diffstat (limited to 'src/os_unix_defs.h')
-rw-r--r-- | src/os_unix_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix_defs.h b/src/os_unix_defs.h index 5ca09a7584..96fc7ff32e 100644 --- a/src/os_unix_defs.h +++ b/src/os_unix_defs.h @@ -229,6 +229,7 @@ # define MAXPATHL 1024 #endif +// TODO(stefan991): remove macro #define CHECK_INODE /* used when checking if a swap file already exists for a file */ # ifndef DFLT_MAXMEM @@ -276,7 +277,6 @@ #endif #define HAVE_DUP /* have dup() */ -#define HAVE_ST_MODE /* have stat.st_mode */ /* We have three kinds of ACL support. */ #define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL || HAVE_AIX_ACL) |