diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-31 21:59:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-31 21:59:46 +0200 |
commit | 914703bee2422e2797576e06145380389096ec09 (patch) | |
tree | c0d46af3b55b2ddcc5aa9453b0c9b575dd56070a /src/os_win32.h | |
parent | 20a825ae0f90099249924740a5113e6ed413bc66 (diff) | |
download | vim-git-914703bee2422e2797576e06145380389096ec09.tar.gz |
Correct use of long instead of off_t for file size. (James Vega)
Diffstat (limited to 'src/os_win32.h')
-rw-r--r-- | src/os_win32.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os_win32.h b/src/os_win32.h index b57ee2388..527d8c7b3 100644 --- a/src/os_win32.h +++ b/src/os_win32.h @@ -93,6 +93,7 @@ #include <stdlib.h> #include <time.h> +#include <sys/types.h> #ifndef STRICT # define STRICT |