diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-12-17 18:06:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-12-17 18:06:06 +0100 |
commit | 9c26303293f9bbab75d7074038dec0d33f4eb635 (patch) | |
tree | 7bfda2c6111a9a0f2390ea6a917b5dd8db104e67 /src/undo.c | |
parent | 0215e8e15bb97299cc1b00d3bae877309dadc505 (diff) | |
download | vim-9c26303293f9bbab75d7074038dec0d33f4eb635.zip |
updated for version 7.3.085
Problem: Inconsistency with preproc symbols. void * computation.
Solution: Include vimio.h from vim.h. Add type cast.
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/undo.c b/src/undo.c index bcf9463eb..ec7b1a4ae 100644 --- a/src/undo.c +++ b/src/undo.c @@ -81,10 +81,6 @@ #define UH_MAGIC 0x18dade /* value for uh_magic when in use */ #define UE_MAGIC 0xabc123 /* value for ue_magic when in use */ -#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64) -# include "vimio.h" /* for vim_read(), must be before vim.h */ -#endif - #include "vim.h" static void u_unch_branch __ARGS((u_header_T *uhp)); |