diff options
author | jsing <> | 2014-07-10 20:42:45 +0000 |
---|---|---|
committer | jsing <> | 2014-07-10 20:42:45 +0000 |
commit | 4e35a47fc1a75ce8f85ad395aa1a5b4d781d69b1 (patch) | |
tree | c5c97614e5d4e9df864e05d4a28c65240933c79d /src/lib/libcrypto/cryptlib.h | |
parent | d12d359cc5baaa581594b788746b1cd6812ee01f (diff) | |
download | openbsd-4e35a47fc1a75ce8f85ad395aa1a5b4d781d69b1.tar.gz openbsd-4e35a47fc1a75ce8f85ad395aa1a5b4d781d69b1.tar.bz2 openbsd-4e35a47fc1a75ce8f85ad395aa1a5b4d781d69b1.zip |
Inline the only use of the HEX_SIZE macro and nuke both DECIMAL_SIZE and
HEX_SIZE.
ok beck@ miod@
Diffstat (limited to 'src/lib/libcrypto/cryptlib.h')
-rw-r--r-- | src/lib/libcrypto/cryptlib.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/cryptlib.h b/src/lib/libcrypto/cryptlib.h index bd4c4da3aa..ad669a2745 100644 --- a/src/lib/libcrypto/cryptlib.h +++ b/src/lib/libcrypto/cryptlib.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cryptlib.h,v 1.21 2014/07/10 20:02:58 jsing Exp $ */ | 1 | /* $OpenBSD: cryptlib.h,v 1.22 2014/07/10 20:42:45 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -76,10 +76,6 @@ extern "C" { | |||
76 | #define X509_CERT_DIR_EVP "SSL_CERT_DIR" | 76 | #define X509_CERT_DIR_EVP "SSL_CERT_DIR" |
77 | #define X509_CERT_FILE_EVP "SSL_CERT_FILE" | 77 | #define X509_CERT_FILE_EVP "SSL_CERT_FILE" |
78 | 78 | ||
79 | /* size of string representations */ | ||
80 | #define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1) | ||
81 | #define HEX_SIZE(type) (sizeof(type)*2) | ||
82 | |||
83 | void OPENSSL_cpuid_setup(void); | 79 | void OPENSSL_cpuid_setup(void); |
84 | extern unsigned int OPENSSL_ia32cap_P[]; | 80 | extern unsigned int OPENSSL_ia32cap_P[]; |
85 | void OPENSSL_showfatal(const char *fmta,...); | 81 | void OPENSSL_showfatal(const char *fmta,...); |