ifdef cleanup, part 4a: '#ifdef undef'
This removes all code surrounded by '#ifdef undef'
One case is left: memmove() replaced by open-coded for loop,
in crypto/stack/stack.c That needs further review.
Also removed a couple of instances of /* dead code */ if I saw them
while doing the main removal.
Reviewed-by: Matt Caswell <matt@openssl.org>
diff --git a/CHANGES b/CHANGES
index 1a8538d..26ea797 100644
--- a/CHANGES
+++ b/CHANGES
@@ -48,6 +48,10 @@
Remove MS_STATIC; it's a relic from platforms <32 bits.
[Rich Salz]
+ *) Start cleaning up dead code
+ Remove all but one '#ifdef undef' which is to be looked at.
+ [Rich Salz]
+
*) Experimental support for a new, fast, unbiased prime candidate generator,
bn_probable_prime_dh_coprime(). Not currently used by any prime generator.
[Felix Laurie von Massenbach <felix@erbridge.co.uk>]