blob: 984847217b94da3f2043c394d48b9493593577be [file] [log] [blame]
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +03001/*
2 * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/*! @file
8@brief This file contains basic type definitions that are platform-dependent.
9*/
10#ifndef _CC_PAL_TYPES_PLAT_H
11#define _CC_PAL_TYPES_PLAT_H
12/* Host specific types for standard (ISO-C99) compilant platforms */
13
14#include <stddef.h>
15#include <stdint.h>
16
17typedef uint32_t CCStatus;
18
19#define CCError_t CCStatus
20#define CC_INFINITE 0xFFFFFFFF
21
22#define CEXPORT_C
23#define CIMPORT_C
24
25#endif /*_CC_PAL_TYPES_PLAT_H*/