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 12 typedef signed char int_hr_t; 13 typedef signed short int int_r_t; 14 typedef signed int int_lr_t; 15 typedef signed short int_hk_t; 16 typedef signed int int_k_t; 17 typedef signed long long int_lk_t; 18 typedef unsigned char uint_uhr_t; 19 typedef unsigned short int uint_ur_t; 20 typedef unsigned int uint_ulr_t; 21 typedef unsigned short int uint_uhk_t; 22 typedef unsigned int uint_uk_t; 23 typedef unsigned long long uint_ulk_t; 24 25 #endif // LLVM_LIBC_TYPES_STDFIX_TYPES_H 26