blob: 84100245b2d33d7b32a90d3be27f49e9492b3797 [file] [log] [blame]
Soby Mathew1ae83bc2017-05-10 11:48:40 +01001/*
2 * Copyright (c) 2017, 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
Soby Mathew1ae83bc2017-05-10 11:48:40 +010014#include <stddef.h>
Isla Mitchell99305012017-07-11 14:54:08 +010015#include <stdint.h>
Soby Mathew1ae83bc2017-05-10 11:48:40 +010016
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*/