commit | 17e3dd1c62e9aadcd908c55e650f70379d2d19e2 | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Thu May 20 21:59:20 1999 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Thu May 20 21:59:20 1999 +0000 |
tree | 2b3191cc15e24d09853b7e1b708fd93a398b40e8 | |
parent | 9dff4cc05100b9989998e4fe061e58d0fbfd6d8e [diff] [blame] |
Don't install e_os.h in include/openssl, use it only as a local include file.
diff --git a/crypto/rsa/rsa_oaep_test.c b/crypto/rsa/rsa_oaep_test.c index 0e8c67f..6d80558 100644 --- a/crypto/rsa/rsa_oaep_test.c +++ b/crypto/rsa/rsa_oaep_test.c
@@ -2,7 +2,13 @@ #include <stdio.h> #include <string.h> -#include <openssl/e_os.h> + +#ifndef FLAT_INC +# include "../e_os.h" +#else +# include "e_os.h" +#endif + #include <openssl/err.h> #ifdef NO_RSA int main(int argc, char *argv[])