1
0
forked from aniani/vim

patch 7.4.2285

Problem:    Generated files are outdated.
Solution:   Generate the files.  Avoid errors when generating prototypes.
This commit is contained in:
Bram Moolenaar
2016-08-28 18:10:45 +02:00
parent f4145d8e99
commit d90b6c02e2
11 changed files with 47 additions and 13 deletions

View File

@@ -410,7 +410,11 @@ typedef __int64 off_T;
# define vim_ftell _ftelli64
# endif
#else
# ifdef PROTO
typedef long off_T;
# else
typedef off_t off_T;
# endif
# ifdef HAVE_FSEEKO
# define vim_lseek lseek
# define vim_ftell ftello
@@ -1809,10 +1813,14 @@ typedef int proftime_T; /* dummy for function prototypes */
* bits elsewhere. That causes memory corruption. Define time_T and use it
* for global variables to avoid that.
*/
#ifdef WIN3264
typedef __time64_t time_T;
#ifdef PROTO
typedef long time_T;
#else
# ifdef WIN3264
typedef __time64_t time_T;
# else
typedef time_t time_T;
# endif
#endif
#ifdef _WIN64