diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-04-19 20:07:05 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-23 06:56:32 -0300 |
commit | f916cf067d42d1dfd8ed477fdd5e3f0bda665eee (patch) | |
tree | 8c1d7cf73b983e2b50ba4d1ebc943df9050b9b52 /src/vim.h | |
parent | e4a1ea9e0282bd3cf32c095a9519171de132c559 (diff) | |
download | rneovim-f916cf067d42d1dfd8ed477fdd5e3f0bda665eee.tar.gz rneovim-f916cf067d42d1dfd8ed477fdd5e3f0bda665eee.tar.bz2 rneovim-f916cf067d42d1dfd8ed477fdd5e3f0bda665eee.zip |
Use portable format specifiers: Remove branching with LONG_LONG_OFF_T.
After previous commits, branching code by using macro LONG_LONG_OFF_T
becomes unneccesary. Remove it.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -94,16 +94,6 @@ typedef long __w64 long_i; #define PRINTF_DECIMAL_LONG_U SCANF_DECIMAL_LONG_U /* - * Only systems which use configure will have SIZEOF_OFF_T and SIZEOF_LONG - * defined, which is ok since those are the same systems which can have - * varying sizes for off_t. The other systems will continue to use "%ld" to - * print off_t since off_t is simply a typedef to long for them. - */ -#if defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T > SIZEOF_LONG) -# define LONG_LONG_OFF_T -#endif - -/* * The characters and attributes cached for the screen. */ typedef char_u schar_T; |