Warning: This file is not a C or C++ file. It does not have highlighting.

1//===-- Definition of stdfix integer types --------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIBC_TYPES_STDFIX_TYPES_H
10#define LLVM_LIBC_TYPES_STDFIX_TYPES_H
11
12typedef signed char int_hr_t;
13typedef signed short int int_r_t;
14typedef signed int int_lr_t;
15typedef signed short int_hk_t;
16typedef signed int int_k_t;
17typedef signed long long int_lk_t;
18typedef unsigned char uint_uhr_t;
19typedef unsigned short int uint_ur_t;
20typedef unsigned int uint_ulr_t;
21typedef unsigned short int uint_uhk_t;
22typedef unsigned int uint_uk_t;
23typedef unsigned long long uint_ulk_t;
24
25#endif // LLVM_LIBC_TYPES_STDFIX_TYPES_H
26

Warning: This file is not a C or C++ file. It does not have highlighting.

source code of libc/include/llvm-libc-types/stdfix-types.h