diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2024-09-09 11:02:59 +0200 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-25 16:08:35 +0000 |
commit | 67c303cb5fb59943cfe317b686d9a8be05ab8481 (patch) | |
tree | 7db85f46271f57f1dce4d0c630b7683d8fc09f53 /CryptoPkg | |
parent | c371460cb4d8b8b2c7cd8a51de74e4b85aa499eb (diff) | |
download | edk2-67c303cb5fb59943cfe317b686d9a8be05ab8481.tar.gz |
CrtLibSupport: add intptr_t
Will be needed by openssl-3.4.x
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'CryptoPkg')
-rw-r--r-- | CryptoPkg/Library/Include/CrtLibSupport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CryptoPkg/Library/Include/CrtLibSupport.h b/CryptoPkg/Library/Include/CrtLibSupport.h index 62090c57cb..cd51e197e7 100644 --- a/CryptoPkg/Library/Include/CrtLibSupport.h +++ b/CryptoPkg/Library/Include/CrtLibSupport.h @@ -109,6 +109,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent typedef UINTN size_t;
typedef UINTN off_t;
typedef UINTN u_int;
+typedef UINTN intptr_t;
typedef INTN ptrdiff_t;
typedef INTN ssize_t;
typedef INT64 time_t;
|