diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-15 11:26:00 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-15 11:26:00 +0000 |
commit | e053e684d976418da474636779b2623333621f55 (patch) | |
tree | e39354394bd942c5bb1dd260c62021aa465333ac /lib/libcrypto/ec | |
parent | c508c00d4ab2118bac5f545bc26f477e8645ef3a (diff) |
Stop being a dummy... presumably these are left overs from pedantic mode
that were not wrapped with #if PEDANTIC.
ok miod@
Diffstat (limited to 'lib/libcrypto/ec')
-rw-r--r-- | lib/libcrypto/ec/ecp_nistp224.c | 2 | ||||
-rw-r--r-- | lib/libcrypto/ec/ecp_nistp256.c | 2 | ||||
-rw-r--r-- | lib/libcrypto/ec/ecp_nistp521.c | 2 | ||||
-rw-r--r-- | lib/libcrypto/ec/ecp_nistputil.c | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/lib/libcrypto/ec/ecp_nistp224.c b/lib/libcrypto/ec/ecp_nistp224.c index 29ff2fc1f15..bd8f65b0973 100644 --- a/lib/libcrypto/ec/ecp_nistp224.c +++ b/lib/libcrypto/ec/ecp_nistp224.c @@ -1697,6 +1697,4 @@ ec_GFp_nistp224_have_precompute_mult(const EC_GROUP * group) return 0; } -#else -static void *dummy = &dummy; #endif diff --git a/lib/libcrypto/ec/ecp_nistp256.c b/lib/libcrypto/ec/ecp_nistp256.c index 85f370caddd..558c29c5ba2 100644 --- a/lib/libcrypto/ec/ecp_nistp256.c +++ b/lib/libcrypto/ec/ecp_nistp256.c @@ -2243,6 +2243,4 @@ ec_GFp_nistp256_have_precompute_mult(const EC_GROUP * group) else return 0; } -#else -static void *dummy = &dummy; #endif diff --git a/lib/libcrypto/ec/ecp_nistp521.c b/lib/libcrypto/ec/ecp_nistp521.c index fab22243451..0c40f083462 100644 --- a/lib/libcrypto/ec/ecp_nistp521.c +++ b/lib/libcrypto/ec/ecp_nistp521.c @@ -2117,6 +2117,4 @@ ec_GFp_nistp521_have_precompute_mult(const EC_GROUP * group) return 0; } -#else -static void *dummy = &dummy; #endif diff --git a/lib/libcrypto/ec/ecp_nistputil.c b/lib/libcrypto/ec/ecp_nistputil.c index 28fecf8b6e5..efd6f368c1d 100644 --- a/lib/libcrypto/ec/ecp_nistputil.c +++ b/lib/libcrypto/ec/ecp_nistputil.c @@ -204,6 +204,4 @@ ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, unsigned char *digit, unsig *sign = s & 1; *digit = d; } -#else -static void *dummy = &dummy; #endif |