commit | a2aa31a9269641839178b0c0663dc67405c33d3e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 23 22:52:40 2014 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 23 22:52:40 2014 +0100 |
tree | fba5b26febe0f352a4ad0a9cace397f479ced86c | |
parent | 7d311c52ce2859f67532e0a4b604eb8147473c01 [diff] [blame] |
updated for version 7.4.188 Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
diff --git a/src/os_win16.h b/src/os_win16.h index c5a89c8..4c26772 100644 --- a/src/os_win16.h +++ b/src/os_win16.h
@@ -55,8 +55,8 @@ #define FNAME_ILLEGAL "\"*?><|" /* illegal characters in a file name */ -#ifndef SIZEOF_INT -# define SIZEOF_INT 2 +#ifndef VIM_SIZEOF_INT +# define VIM_SIZEOF_INT 2 #endif typedef long off_t;