Whitespace checkin

pull/35/head
Jeffrey Walton 2015-07-30 14:33:17 -04:00
parent 458d582ab1
commit efaaea4a90
1 changed files with 9 additions and 9 deletions

View File

@ -172,17 +172,17 @@ const lword LWORD_MAX = W64LIT(0xffffffffffffffff);
typedef word64 dword;
#endif
#endif
// Handle missing ssize_t on Windows. Typedef's taken from:
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa383751%28v=vs.85%29.aspx#LONG_PTR
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa383751%28v=vs.85%29.aspx
#if defined(_WIN32) || defined(_WIN64)
# if defined(_WIN64)
typedef __int64 LONG_PTR;
# else
typedef long LONG_PTR;
# endif
typedef LONG_PTR SSIZE_T;
typedef SSIZE_T ssize_t;
# if defined(_WIN64)
typedef __int64 LONG_PTR;
# else
typedef long LONG_PTR;
# endif
typedef LONG_PTR SSIZE_T;
typedef SSIZE_T ssize_t;
#endif
#ifndef CRYPTOPP_BOOL_SLOW_WORD64