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:
@@ -1127,8 +1127,13 @@ typedef long_u hash_T; /* Type for hi_hash */
|
||||
#ifdef FEAT_NUM64
|
||||
/* Use 64-bit Number. */
|
||||
# ifdef WIN3264
|
||||
# ifdef PROTO
|
||||
typedef long varnumber_T;
|
||||
typedef unsigned long uvarnumber_T;
|
||||
# else
|
||||
typedef __int64 varnumber_T;
|
||||
typedef unsigned __int64 uvarnumber_T;
|
||||
# endif
|
||||
# elif defined(HAVE_STDINT_H)
|
||||
typedef int64_t varnumber_T;
|
||||
typedef uint64_t uvarnumber_T;
|
||||
|
Reference in New Issue
Block a user