Changeset 3f7fe9e in mainline for abi/include/_bits
- Timestamp:
- 2018-10-01T18:36:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5cef315
- Parents:
- 1938b381
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 16:13:55)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-10-01 18:36:42)
- Location:
- abi/include/_bits
- Files:
-
- 4 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/all.h
r1938b381 r3f7fe9e 41 41 #define _BITS_ALL_H_ 42 42 43 #include <_bits/inttypes.h> 44 #include <_bits/limits.h> 43 #include <inttypes.h> 44 #include <limits.h> 45 #include <stddef.h> 46 45 47 #include <_bits/native.h> 46 #include <_bits/ptrdiff_t.h>47 #include <_bits/size_t.h>48 48 #include <_bits/ssize_t.h> 49 #include <_bits/stdint.h>50 #include <_bits/wchar_t.h>51 49 #include <_bits/wint_t.h> 52 50 -
abi/include/_bits/int128_t.h
r1938b381 r3f7fe9e 1 1 /* 2 * Copyright (c) 20 06 Josef Cejka2 * Copyright (c) 2018 CZ.NIC, z.s.p.o. 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /* 30 * Authors: 31 * Jiří Zárevúcky (jzr) <zarevucky.jiri@gmail.com> 32 */ 33 34 /** @addtogroup bits 30 35 * @{ 31 36 */ 32 37 /** @file 38 * Define nonstandard 128-bit types if they are supported by the compiler. 39 * GCC only provides this on some architectures. We use it on IA-64. 33 40 */ 34 41 35 #ifndef LIBC_STDINT_H_36 #define LIBC_STDINT_H_42 #ifndef _BITS_INT128_T_H_ 43 #define _BITS_INT128_T_H_ 37 44 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 42 #include <_bits/stdint.h> 43 44 #ifdef __cplusplus 45 } 45 #ifdef __SIZEOF_INT128__ 46 typedef __int128 int128_t; 47 typedef unsigned __int128 uint128_t; 46 48 #endif 47 49
Note:
See TracChangeset
for help on using the changeset viewer.