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/config.h.in | |
parent | 20a825ae0f90099249924740a5113e6ed413bc66 (diff) | |
download | vim-914703bee2422e2797576e06145380389096ec09.zip |
Correct use of long instead of off_t for file size. (James Vega)
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/config.h.in b/src/config.h.in index 109953151..f6c4561ae 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -39,6 +39,12 @@ /* Defined to the size of an int */ #undef SIZEOF_INT +/* Defined to the size of a long */ +#undef SIZEOF_LONG + +/* Defined to the size of off_t */ +#undef SIZEOF_OFF_T + /* Defined to the size of time_t */ #undef SIZEOF_TIME_T @@ -251,12 +257,13 @@ #undef HAVE_SYS_SYSINFO_H #undef HAVE_SYS_SYSTEMINFO_H #undef HAVE_SYS_TIME_H +#undef HAVE_SYS_TYPES_H #undef HAVE_SYS_UTSNAME_H -#undef HAVE_WCHAR_H -#undef HAVE_WCTYPE_H #undef HAVE_TERMCAP_H #undef HAVE_TERMIOS_H #undef HAVE_TERMIO_H +#undef HAVE_WCHAR_H +#undef HAVE_WCTYPE_H #undef HAVE_UNISTD_H #undef HAVE_UTIL_DEBUG_H #undef HAVE_UTIL_MSGI18N_H |