diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-24 17:59:39 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-24 17:59:39 +0100 |
commit | 30276f2beb248557c6b33cd5418bca8b7084b0a5 (patch) | |
tree | 56f7b88712a5ffffdd10681983e70501e2e1ba58 /src/crypt_zip.c | |
parent | 264b74fa545edfb92c0d7d08a02c26331cc5b168 (diff) | |
download | vim-git-30276f2beb248557c6b33cd5418bca8b7084b0a5.tar.gz |
patch 8.1.0811: too many #ifdefsv8.1.0811
Problem: Too many #ifdefs.
Solution: Graduate FEAT_MBYTE, the final chapter.
Diffstat (limited to 'src/crypt_zip.c')
-rw-r--r-- | src/crypt_zip.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/crypt_zip.c b/src/crypt_zip.c index e50fa6b1c..ed17d956b 100644 --- a/src/crypt_zip.c +++ b/src/crypt_zip.c @@ -24,11 +24,7 @@ */ /* Need a type that should be 32 bits. 64 also works but wastes space. */ -# if VIM_SIZEOF_INT >= 4 typedef unsigned int u32_T; /* int is at least 32 bits */ -# else -typedef unsigned long u32_T; /* long should be 32 bits or more */ -# endif /* The state of encryption, referenced by cryptstate_T. */ typedef struct { |