blob: 9e90798f67530f5cf7912a41abd84d254fe02095 [file] [log] [blame]
Imre Kisf55f2aa2024-05-28 15:55:19 +02001/*
2 * Copyright 2020 Broadcom
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6/*
Imre Kis963045f2024-05-29 14:18:58 +02007 * Portions copyright (c) 2020-2024, Arm Limited and Contributors.
Imre Kisf55f2aa2024-05-28 15:55:19 +02008 * All rights reserved.
9 */
10
11#ifndef STDINT__H
12#define STDINT__H
13
14#define INT64_MAX LONG_MAX
15#define INT64_MIN LONG_MIN
16#define UINT64_MAX ULONG_MAX
17
18#define INT64_C(x) x ## L
19#define UINT64_C(x) x ## UL
20
21typedef long int64_t;
22typedef unsigned long uint64_t;
23typedef long int64_least_t;
24typedef unsigned long uint64_least_t;
25typedef long int64_fast_t;
26typedef unsigned long uint64_fast_t;
27
Imre Kisf55f2aa2024-05-28 15:55:19 +020028#endif