X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fec%2Fecp_recp.c;h=4bc2b7ebc507df6c857f5c75e03084338b94964b;hp=89572875e0985d0881acef6b29b040ce8773c955;hb=0657bf9c14598f52fe3cacd0c32d99458d97659e;hpb=f8fe20e0d9c4fb2d96eaa087947c920225d73ff9;ds=sidebyside diff --git a/crypto/ec/ecp_recp.c b/crypto/ec/ecp_recp.c index 89572875e0..4bc2b7ebc5 100644 --- a/crypto/ec/ecp_recp.c +++ b/crypto/ec/ecp_recp.c @@ -54,6 +54,15 @@ * */ -#include - #include "ec_lcl.h" + + +const EC_METHOD *EC_GFp_recp_method(void) + { + static const EC_METHOD ret = + { + 0 /* XXX */ + }; + + return &ret; + }