summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-12 12:20:16 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 08:59:03 +0100
commitb3599dbb6af7e28efae5f08ace99cc75f5e90b2f (patch)
tree186ce0f1525098cb18868274a2d32968a4e30945 /include
parent974eeb93e3549d378d2c20276a51e2de21d50622 (diff)
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>
Diffstat (limited to 'include')
-rw-r--r--include/internal/bio.h2
-rw-r--r--include/internal/comp.h2
-rw-r--r--include/internal/conf.h6
-rw-r--r--include/internal/err.h4
4 files changed, 7 insertions, 7 deletions
diff --git a/include/internal/bio.h b/include/internal/bio.h
index 521285a7b6..e62580b003 100644
--- a/include/internal/bio.h
+++ b/include/internal/bio.h
@@ -67,4 +67,4 @@ struct bio_method_st {
long (*callback_ctrl) (BIO *, int, bio_info_cb *);
};
-void int_bio_sock_cleanup(void);
+void bio_sock_cleanup_int(void);
diff --git a/include/internal/comp.h b/include/internal/comp.h
index e5de19708e..34bf147325 100644
--- a/include/internal/comp.h
+++ b/include/internal/comp.h
@@ -8,4 +8,4 @@
#include <openssl/comp.h>
-void int_comp_zlib_cleanup(void);
+void comp_zlib_cleanup_int(void);
diff --git a/include/internal/conf.h b/include/internal/conf.h
index 4c3946d920..2d48daf5d0 100644
--- a/include/internal/conf.h
+++ b/include/internal/conf.h
@@ -51,9 +51,9 @@ struct ossl_init_settings_st {
char *config_name;
};
-void int_openssl_config(const char *config_name);
-void int_openssl_no_config(void);
-void int_conf_modules_free(void);
+void openssl_config_int(const char *config_name);
+void openssl_no_config_int(void);
+void conf_modules_free_int(void);
#ifdef __cplusplus
}
diff --git a/include/internal/err.h b/include/internal/err.h
index 98ba4944db..f9aa2b2120 100644
--- a/include/internal/err.h
+++ b/include/internal/err.h
@@ -58,7 +58,7 @@
#ifndef INTERNAL_ERR_H
# define INTERNAL_ERR_H
-void int_err_load_crypto_strings(void);
-void int_err_free_strings(void);
+void err_load_crypto_strings_int(void);
+void err_free_strings_int(void);
#endif