summaryrefslogtreecommitdiffstats
path: root/crypto/aes
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-06-18 09:35:29 +0000
committerBodo Möller <bodo@openssl.org>2002-06-18 09:35:29 +0000
commit7a68e6aad1808e19af8f809eb37a83078c36dea6 (patch)
treec8d81c403e25c463253f97590c6a944f1ef73650 /crypto/aes
parentf27fa54388d93aff9ad837583fdcaa63d04cb35e (diff)
always include <string.h> (we do this in various other header files,
so it can't be bad) PR: 102
Diffstat (limited to 'crypto/aes')
-rw-r--r--crypto/aes/aes_locl.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/aes/aes_locl.h b/crypto/aes/aes_locl.h
index 541d1d6e84..18fc2d0747 100644
--- a/crypto/aes/aes_locl.h
+++ b/crypto/aes/aes_locl.h
@@ -60,10 +60,7 @@
#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)