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 <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
@@ -420,6 +420,6 @@ struct evp_pkey_st {
|
||||
} /* EVP_PKEY */ ;
|
||||
|
||||
|
||||
void int_openssl_add_all_ciphers(void);
|
||||
void int_openssl_add_all_digests(void);
|
||||
void int_evp_cleanup(void);
|
||||
void openssl_add_all_ciphers_int(void);
|
||||
void openssl_add_all_digests_int(void);
|
||||
void evp_cleanup_int(void);
|
||||
|
||||
Reference in New Issue
Block a user