summaryrefslogtreecommitdiffstats
path: root/crypto/aes/aes_locl.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-06-18 09:35:43 +0000
committerBodo Möller <bodo@openssl.org>2002-06-18 09:35:43 +0000
commitc4c2c61e8ca8986de4636f9c63ae18a2c4e270ef (patch)
treee80430ccfc3bddfb770b8d9f4823e1572f685678 /crypto/aes/aes_locl.h
parent5f3d6f70f693474df58863f1e51d436242f16405 (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/aes_locl.h')
-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)