From e4dd79bbc83f9eb4f55f3f1d04c4f72fea022778 Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Sat, 5 Jan 2002 12:55:08 +0000 Subject: [PATCH] - Add the same header stuff to aes_locl.h as is in des_locl.h to avoid undefined functions (memset, etc). - Put a .cvsignore in the aes directory too. --- crypto/aes/.cvsignore | 2 ++ crypto/aes/aes_locl.h | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 crypto/aes/.cvsignore diff --git a/crypto/aes/.cvsignore b/crypto/aes/.cvsignore new file mode 100644 index 0000000000..c6d03a9dbc --- /dev/null +++ b/crypto/aes/.cvsignore @@ -0,0 +1,2 @@ +lib +Makefile.save diff --git a/crypto/aes/aes_locl.h b/crypto/aes/aes_locl.h index 5d3c367ec4..d49e829933 100644 --- a/crypto/aes/aes_locl.h +++ b/crypto/aes/aes_locl.h @@ -52,10 +52,19 @@ #ifndef HEADER_AES_LOCL_H #define HEADER_AES_LOCL_H +#include + #ifdef OPENSSL_NO_AES #error AES is disabled. #endif +#include +#include + +#if defined(__STDC__) || defined(OPENSSL_SYS_VMS) || defined(M_XENIX) || defined(OPENSSL_SYS_MSDOS) +#include +#endif + typedef unsigned long u32; typedef unsigned short u16; typedef unsigned char u8; -- GitLab