summaryrefslogtreecommitdiff
path: root/crypto/ec
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-10-29 04:42:29 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-10-29 04:42:29 +0000
commit6bcd3f903a5c163ae8994533d90e8571347ed30a (patch)
tree9df10dae27cde75fe5aba35b118a7b48e07a625d /crypto/ec
parent40f935f5b45bc08492177ce5856d2c3e8fe764e5 (diff)
downloadopenssl-new-6bcd3f903a5c163ae8994533d90e8571347ed30a.tar.gz
Comments out some unimplemented functions instead of redeclaring them.
Diffstat (limited to 'crypto/ec')
-rw-r--r--crypto/ec/ecp_recp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/ec/ecp_recp.c b/crypto/ec/ecp_recp.c
index e0b28c1cfa..d454c12fd3 100644
--- a/crypto/ec/ecp_recp.c
+++ b/crypto/ec/ecp_recp.c
@@ -119,7 +119,8 @@ int ec_GFp_recp_group_init(EC_GROUP *group)
return ok;
}
-
+/* Avoid "redundant redeclaration" warnings */
+#if 0
int ec_GFp_recp_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
/* TODO */
@@ -142,3 +143,4 @@ int ec_GFp_recp_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, con
int ec_GFp_recp_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
/* TODO */
+#endif