From b3599dbb6af7e28efae5f08ace99cc75f5e90b2f Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 12 Apr 2016 12:20:16 +0100 Subject: Rename int_*() functions to *_int() There is a preference for suffixes to indicate that a function is internal rather than prefixes. Note: the suffix is only required to disambiguate internal functions and public symbols with the same name (but different case) Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte --- crypto/engine/eng_rdrand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/engine/eng_rdrand.c') diff --git a/crypto/engine/eng_rdrand.c b/crypto/engine/eng_rdrand.c index 093b7f6312..b62f9109ed 100644 --- a/crypto/engine/eng_rdrand.c +++ b/crypto/engine/eng_rdrand.c @@ -130,7 +130,7 @@ static ENGINE *ENGINE_rdrand(void) return ret; } -void int_engine_load_rdrand(void) +void engine_load_rdrand_int(void) { extern unsigned int OPENSSL_ia32cap_P[]; @@ -144,7 +144,7 @@ void int_engine_load_rdrand(void) } } #else -void int_engine_load_rdrand(void) +void engine_load_rdrand_int(void) { } #endif -- cgit v1.2.3