diff options
author | Bodo Möller <bodo@openssl.org> | 1999-04-24 01:28:26 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-04-24 01:28:26 +0200 |
commit | dd3c43c5323d236a42efb1c7d6b509b927747953 (patch) | |
tree | 11b108f5f0533e36f40bb3a4d4ae88cdf1dd292f /times | |
parent | Submitted by: (diff) | |
download | openssl-dd3c43c5323d236a42efb1c7d6b509b927747953.tar.xz openssl-dd3c43c5323d236a42efb1c7d6b509b927747953.zip |
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'times')
-rw-r--r-- | times/x86/bfs.cpp | 2 | ||||
-rw-r--r-- | times/x86/casts.cpp | 2 | ||||
-rw-r--r-- | times/x86/des3s.cpp | 2 | ||||
-rw-r--r-- | times/x86/dess.cpp | 2 | ||||
-rw-r--r-- | times/x86/md5s.cpp | 2 | ||||
-rw-r--r-- | times/x86/rc4s.cpp | 2 | ||||
-rw-r--r-- | times/x86/sha1s.cpp | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/times/x86/bfs.cpp b/times/x86/bfs.cpp index 272ed2f978..d74c457760 100644 --- a/times/x86/bfs.cpp +++ b/times/x86/bfs.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "blowfish.h" +#include <openssl/blowfish.h> void main(int argc,char *argv[]) { diff --git a/times/x86/casts.cpp b/times/x86/casts.cpp index 7f524da57b..7661191acf 100644 --- a/times/x86/casts.cpp +++ b/times/x86/casts.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "cast.h" +#include <openssl/cast.h> void main(int argc,char *argv[]) { diff --git a/times/x86/des3s.cpp b/times/x86/des3s.cpp index 9aff6494d9..02d527c057 100644 --- a/times/x86/des3s.cpp +++ b/times/x86/des3s.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "des.h" +#include <openssl/des.h> void main(int argc,char *argv[]) { diff --git a/times/x86/dess.cpp b/times/x86/dess.cpp index 7fb5987314..753e67ad9b 100644 --- a/times/x86/dess.cpp +++ b/times/x86/dess.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "des.h" +#include <openssl/des.h> void main(int argc,char *argv[]) { diff --git a/times/x86/md5s.cpp b/times/x86/md5s.cpp index ef8e175df0..dd343fd4e6 100644 --- a/times/x86/md5s.cpp +++ b/times/x86/md5s.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "md5.h" +#include <openssl/md5.h> extern "C" { void md5_block_x86(MD5_CTX *ctx, unsigned char *buffer,int num); diff --git a/times/x86/rc4s.cpp b/times/x86/rc4s.cpp index 39f1727dd3..3814fde997 100644 --- a/times/x86/rc4s.cpp +++ b/times/x86/rc4s.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "rc4.h" +#include <openssl/rc4.h> void main(int argc,char *argv[]) { diff --git a/times/x86/sha1s.cpp b/times/x86/sha1s.cpp index 0163377de6..3103e1871b 100644 --- a/times/x86/sha1s.cpp +++ b/times/x86/sha1s.cpp @@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc) #include <stdio.h> #include <stdlib.h> -#include "sha.h" +#include <openssl/sha.h> extern "C" { void sha1_block_x86(SHA_CTX *ctx, unsigned char *buffer,int num); |