Mercurial > vim
comparison src/vim.h @ 2330:ea4bf6df1a8a vim73
Whitespace cleanup.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 17 Jul 2010 23:52:29 +0200 |
parents | ad2889f48843 |
children | a3aca345aafa |
comparison
equal
deleted
inserted
replaced
2329:ad2889f48843 | 2330:ea4bf6df1a8a |
---|---|
390 typedef unsigned int int_u; | 390 typedef unsigned int int_u; |
391 /* Make sure long_u is big enough to hold a pointer. | 391 /* Make sure long_u is big enough to hold a pointer. |
392 * On Win64, longs are 32 bits and pointers are 64 bits. | 392 * On Win64, longs are 32 bits and pointers are 64 bits. |
393 * For printf() and scanf(), we need to take care of long_u specifically. */ | 393 * For printf() and scanf(), we need to take care of long_u specifically. */ |
394 #ifdef _WIN64 | 394 #ifdef _WIN64 |
395 typedef unsigned __int64 long_u; | 395 typedef unsigned __int64 long_u; |
396 typedef __int64 long_i; | 396 typedef __int64 long_i; |
397 # define SCANF_HEX_LONG_U "%Ix" | 397 # define SCANF_HEX_LONG_U "%Ix" |
398 # define SCANF_DECIMAL_LONG_U "%Iu" | 398 # define SCANF_DECIMAL_LONG_U "%Iu" |
399 # define PRINTF_HEX_LONG_U "0x%Ix" | 399 # define PRINTF_HEX_LONG_U "0x%Ix" |
400 #else | 400 #else |
401 /* Microsoft-specific. The __w64 keyword should be specified on any typedefs | 401 /* Microsoft-specific. The __w64 keyword should be specified on any typedefs |