diff options
Diffstat (limited to 'src/nvim/if_cscope_defs.h')
-rw-r--r-- | src/nvim/if_cscope_defs.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/if_cscope_defs.h b/src/nvim/if_cscope_defs.h index 0ec9e30516..a0c84e8ba1 100644 --- a/src/nvim/if_cscope_defs.h +++ b/src/nvim/if_cscope_defs.h @@ -14,10 +14,10 @@ #if defined(UNIX) # include <sys/types.h> /* pid_t */ -# include <sys/stat.h> /* dev_t, ino_t */ -#else #endif +#include "nvim/os/fs_defs.h" + #define CSCOPE_SUCCESS 0 #define CSCOPE_FAILURE -1 @@ -52,8 +52,7 @@ typedef struct csi { #if defined(UNIX) pid_t pid; /* PID of the connected cscope process. */ #endif - uint64_t st_dev; /* ID of dev containing cscope db */ - uint64_t st_ino; /* inode number of cscope db */ + FileID file_id; FILE * fr_fp; /* from cscope: FILE. */ FILE * to_fp; /* to cscope: FILE. */ |