summaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-27 17:44:12 -0500
committerRich Salz <rsalz@openssl.org>2015-01-27 17:44:12 -0500
commit1a5adcfb5edfe23908b350f8757df405b0f5f71f (patch)
tree1fd7eeff1276c7e1847c2bc10aba1ea432793e87 /crypto/dso
parent63c574f6a639cfa3f53476080054526e6bfa3bc9 (diff)
"#if 0" removal: header files
Remove all "#if 0" blocks from header files. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/crypto/dso/dso.h b/crypto/dso/dso.h
index f6a1b67003..12c16b69b2 100644
--- a/crypto/dso/dso.h
+++ b/crypto/dso/dso.h
@@ -157,13 +157,6 @@ typedef struct dso_meth_st {
* libraries at all, let alone a DSO_METHOD implemented for them.
*/
DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname);
-/* I don't think this would actually be used in any circumstances. */
-# if 0
- /* Unbinds a variable */
- int (*dso_unbind_var) (DSO *dso, char *symname, void *symptr);
- /* Unbinds a function */
- int (*dso_unbind_func) (DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
-# endif
/*
* The generic (yuck) "ctrl()" function. NB: Negative return values
* (rather than zero) indicate errors.