diff options
Diffstat (limited to 'src/include/openssl/ec.h')
-rw-r--r-- | src/include/openssl/ec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/openssl/ec.h b/src/include/openssl/ec.h index 36a3a29..2662c01 100644 --- a/src/include/openssl/ec.h +++ b/src/include/openssl/ec.h @@ -305,8 +305,8 @@ OPENSSL_EXPORT int EC_METHOD_get_field_type(const EC_METHOD *meth); /* EC_GROUP_set_point_conversion_form aborts the process if |form| is not * |POINT_CONVERSION_UNCOMPRESSED| and otherwise does nothing. */ -void EC_GROUP_set_point_conversion_form(EC_GROUP *group, - point_conversion_form_t form); +OPENSSL_EXPORT void EC_GROUP_set_point_conversion_form( + EC_GROUP *group, point_conversion_form_t form); /* Old code expects to get EC_KEY from ec.h. */ |