diff options
| author | rajdakin <rajdakin@gmail.com> | 2024-09-10 17:25:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-10 17:25:37 +0200 |
| commit | 0d6028d83753ce93aff9aecc8443de657663071c (patch) | |
| tree | 1226447e55b1051262c6c7fc8ff34074471bd2da /wrapperhelper/include-override/common/bits/stdint-uintn.h | |
| parent | 2127eaea221e89a44ececc87bc74f7d7b44873d0 (diff) | |
| download | box64-0d6028d83753ce93aff9aecc8443de657663071c.tar.gz box64-0d6028d83753ce93aff9aecc8443de657663071c.zip | |
[WRAPPERHELPER] Added per-arch override, always include 'stdc-predef.h', better parsing (#1813)
Diffstat (limited to 'wrapperhelper/include-override/common/bits/stdint-uintn.h')
| -rw-r--r-- | wrapperhelper/include-override/common/bits/stdint-uintn.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/wrapperhelper/include-override/common/bits/stdint-uintn.h b/wrapperhelper/include-override/common/bits/stdint-uintn.h new file mode 100644 index 00000000..cf2e8b4e --- /dev/null +++ b/wrapperhelper/include-override/common/bits/stdint-uintn.h @@ -0,0 +1,32 @@ +/* Define uintN_t types. + Copyright (C) 2017-2024 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. + +This file has been adapted to work with the 'wrapperhelper' project on the 09/06/2024. +*/ + +#ifndef _BITS_STDINT_UINTN_H +#define _BITS_STDINT_UINTN_H 1 + +#include <bits/types.h> + +typedef __uint8_t uint8_t; +typedef __uint16_t uint16_t; +typedef __uint32_t uint32_t; +typedef __uint64_t uint64_t; + +#endif /* bits/stdint-uintn.h */ |