always include <string.h> (we do this in various other header files,
authorBodo Möller <bodo@openssl.org>
Tue, 18 Jun 2002 09:35:43 +0000 (09:35 +0000)
committerBodo Möller <bodo@openssl.org>
Tue, 18 Jun 2002 09:35:43 +0000 (09:35 +0000)
so it can't be bad)

PR: 102

crypto/aes/aes_locl.h

index 541d1d6e84592d9ed91f63b29fb85948bfca5c8f..18fc2d074765581da416bfa9d29b64d6975806d8 100644 (file)
 
 #include <stdio.h>
 #include <stdlib.h>
-
-#if defined(__STDC__) || defined(OPENSSL_SYS_VMS) || defined(M_XENIX) || defined(OPENSSL_SYS_MSDOS)
 #include <string.h>
-#endif
 
 #ifdef _MSC_VER
 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)