]> git.ipfire.org Git - thirdparty/openssl.git/commit
providers/implementations/kdfs/argon2.c: Include openssl/e_os2.h instead of stdint.h
authorRichard Levitte <levitte@openssl.org>
Fri, 17 Mar 2023 15:56:11 +0000 (16:56 +0100)
committerRichard Levitte <levitte@openssl.org>
Fri, 17 Mar 2023 15:56:11 +0000 (16:56 +0100)
commit46ce0854db51e373ab6ed4982431349107cd9b6d
tree1e0d8f3e92a623649483b60527cde8275183205d
parente5dd732749f524e2a0aaa67f8d514d34863dd89f
providers/implementations/kdfs/argon2.c: Include openssl/e_os2.h instead of stdint.h

<stdint.h> may not exist with pre-C99 compilers.  <openssl/e_os2.h> deals
with that, so include it instead.

Similarly, include "internal/numbers.h" rather than <limits.h>, to deal
with things that may be lacking in the latter.

Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20537)
providers/implementations/kdfs/argon2.c