- Add the same header stuff to aes_locl.h as is in des_locl.h to avoid
authorGeoff Thorpe <geoff@openssl.org>
Sat, 5 Jan 2002 12:55:08 +0000 (12:55 +0000)
committerGeoff Thorpe <geoff@openssl.org>
Sat, 5 Jan 2002 12:55:08 +0000 (12:55 +0000)
  undefined functions (memset, etc).
- Put a .cvsignore in the aes directory too.

crypto/aes/.cvsignore [new file with mode: 0644]
crypto/aes/aes_locl.h

diff --git a/crypto/aes/.cvsignore b/crypto/aes/.cvsignore
new file mode 100644 (file)
index 0000000..c6d03a9
--- /dev/null
@@ -0,0 +1,2 @@
+lib
+Makefile.save
index 5d3c367ec4a7e4acd9223b22dce40361c57577d1..d49e829933a500faca3b66af1601ed6acac89ea2 100644 (file)
 #ifndef HEADER_AES_LOCL_H
 #define HEADER_AES_LOCL_H
 
+#include <openssl/e_os2.h>
+
 #ifdef OPENSSL_NO_AES
 #error AES is disabled.
 #endif
 
+#include <stdio.h>
+#include <stdlib.h>
+
+#if defined(__STDC__) || defined(OPENSSL_SYS_VMS) || defined(M_XENIX) || defined(OPENSSL_SYS_MSDOS)
+#include <string.h>
+#endif
+
 typedef unsigned long u32;
 typedef unsigned short u16;
 typedef unsigned char u8;