summaryrefslogtreecommitdiff
path: root/e_os.h
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2018-02-23 16:49:59 -0500
committerRich Salz <rsalz@openssl.org>2018-02-23 16:49:59 -0500
commit77376c0507b6159b94fc092d7fcd7e7c7a3ed7d9 (patch)
tree1f883a7927f214b7676b7f067e0298d60b836464 /e_os.h
parent604e591ed75eff9296c21ee5fe93f3e9ec246094 (diff)
downloadopenssl-new-77376c0507b6159b94fc092d7fcd7e7c7a3ed7d9.tar.gz
Remove OSSLzu, and fix the one place that used it.
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5439)
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/e_os.h b/e_os.h
index f3b8fb830d..3e92716a91 100644
--- a/e_os.h
+++ b/e_os.h
@@ -26,33 +26,6 @@
extern "C" {
#endif
-/*
- * Format specifier for printing size_t. Original conundrum was to
- * get it working with -Wformat [-Werror], which can be considered
- * overzealous, especially in multi-platform context, but it's
- * conscious choice...
- */
-# if defined(_WIN64)
-# define OSSLzu "I64u" /* One would expect _WIN{64|32} cases after
- * __STDC_VERSION__, but there are corner
- * cases of MinGW compilers that link with
- * non-compliant MSVCRT.DLL... */
-# elif defined(_WIN32)
-# define OSSLzu "u"
-# elif defined(__VMS)
-# define OSSLzu "u" /* VMS suffers from similar problem as MinGW,
- * i.e. C RTL falling behind compiler. Recall
- * that sizeof(size_t)==4 even in LP64 case. */
-# elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
-# define OSSLzu "zu"
-# elif defined(__SIZEOF_SIZE_T__) && __SIZEOF_SIZE_T__==4
-# define OSSLzu "u" /* 'lu' should have worked, but when generating
- * 32-bit code gcc still complains :-( */
-# else
-# define OSSLzu "lu" /* To see that is works recall what does L
- * stand for in ILP32 and LP64 */
-# endif
-
# ifndef DEVRANDOM
/*
* set this to a comma-separated list of 'random' device files to try out. By