source: mainline/uspace/lib/cpp/include/cstdint@ b57ba05

Last change on this file since b57ba05 was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Update headers in C++ files

  • Property mode set to 100644
File size: 890 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef LIBCPP_CSTDINT
8#define LIBCPP_CSTDINT
9
10#include <stdint.h>
11
12namespace std
13{
14 using ::int8_t;
15 using ::int16_t;
16 using ::int32_t;
17 using ::int64_t;
18
19 using ::intmax_t;
20 using ::intptr_t;
21
22 using ::int_fast8_t;
23 using ::int_fast16_t;
24 using ::int_fast32_t;
25 using ::int_fast64_t;
26
27 using ::int_least8_t;
28 using ::int_least16_t;
29 using ::int_least32_t;
30 using ::int_least64_t;
31
32 using ::uint8_t;
33 using ::uint16_t;
34 using ::uint32_t;
35 using ::uint64_t;
36
37 using ::uintmax_t;
38 using ::uintptr_t;
39
40 using ::uint_fast8_t;
41 using ::uint_fast16_t;
42 using ::uint_fast32_t;
43 using ::uint_fast64_t;
44
45 using ::uint_least8_t;
46 using ::uint_least16_t;
47 using ::uint_least32_t;
48 using ::uint_least64_t;
49}
50
51#endif
Note: See TracBrowser for help on using the repository browser.