]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - include/openssl/bn.h
Update the check surround the BN_zero() implementation
[thirdparty/openssl.git] / include / openssl / bn.h
index 7cfc791eabfe7999ff75eecfe483b82927962d0c..8512ddf284037f35a2db70a731e76453ac8e6731 100644 (file)
@@ -198,7 +198,7 @@ int BN_is_odd(const BIGNUM *a);
 
 void BN_zero_ex(BIGNUM *a);
 
-# if OPENSSL_API_0_9_8
+# if OPENSSL_API_LEVEL > 908
 #  define BN_zero(a)      BN_zero_ex(a)
 # else
 #  define BN_zero(a)      (BN_set_word((a),0))