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:
Matt Caswell
2016-04-12 12:20:16 +01:00
parent 974eeb93e3
commit b3599dbb6a
38 changed files with 115 additions and 115 deletions

View File

@@ -54,12 +54,12 @@
#include <openssl/engine.h>
void int_engine_load_openssl(void);
void int_engine_load_cryptodev(void);
void int_engine_load_rdrand(void);
void int_engine_load_dynamic(void);
void int_engine_load_padlock(void);
void int_engine_load_capi(void);
void int_engine_load_dasync(void);
void int_engine_load_afalg(void);
void int_engine_cleanup(void);
void engine_load_openssl_int(void);
void engine_load_cryptodev_int(void);
void engine_load_rdrand_int(void);
void engine_load_dynamic_int(void);
void engine_load_padlock_int(void);
void engine_load_capi_int(void);
void engine_load_dasync_int(void);
void engine_load_afalg_int(void);
void engine_cleanup_int(void);