aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_types_internal.h
blob: a97ac9cd45923e4329f89252eaa544fd1211bd63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Copyright (c) 2022, Nokia
 * All rights reserved.
 *
 * SPDX-License-Identifier:	BSD-3-Clause
 */

#ifndef ODP_TYPES_INTERNAL_H_
#define ODP_TYPES_INTERNAL_H_

#ifdef __cplusplus
extern "C" {
#endif

#ifdef __SIZEOF_INT128__

__extension__ typedef unsigned __int128 _odp_u128_t;

#endif

#ifdef __cplusplus
}
#endif

#endif