diff options
author | Pauli <paul.dale@oracle.com> | 2017-08-24 01:05:07 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-08-29 23:20:44 +0200 |
commit | 07016a8a3174db5caf07182930533cf88ad9b0ad (patch) | |
tree | 42dcb67fa6c72635b76590f8ab698bb4c692d838 /crypto/blake2 | |
parent | Remove the X_OK define, it is unused. (diff) | |
download | openssl-07016a8a3174db5caf07182930533cf88ad9b0ad.tar.xz openssl-07016a8a3174db5caf07182930533cf88ad9b0ad.zip |
Move e_os.h to be the very first include.
cryptilib.h is the second.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4188)
Diffstat (limited to 'crypto/blake2')
-rw-r--r-- | crypto/blake2/blake2b.c | 3 | ||||
-rw-r--r-- | crypto/blake2/blake2s.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/crypto/blake2/blake2b.c b/crypto/blake2/blake2b.c index e77bd9ac16..829ba5b50a 100644 --- a/crypto/blake2/blake2b.c +++ b/crypto/blake2/blake2b.c @@ -1,5 +1,5 @@ /* - * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -17,7 +17,6 @@ #include <assert.h> #include <string.h> #include <openssl/crypto.h> -#include "e_os.h" #include "blake2_locl.h" #include "blake2_impl.h" diff --git a/crypto/blake2/blake2s.c b/crypto/blake2/blake2s.c index 7451b14f5a..8211374d12 100644 --- a/crypto/blake2/blake2s.c +++ b/crypto/blake2/blake2s.c @@ -1,5 +1,5 @@ /* - * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -17,7 +17,6 @@ #include <assert.h> #include <string.h> #include <openssl/crypto.h> -#include "e_os.h" #include "blake2_locl.h" #include "blake2_impl.h" |