blob: f6d41d786e5fc02a4625ea86885fe90527d7c602 [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
Elyes Haouas2be03c02023-02-13 09:14:48 +010012/* Host specific types for standard (ISO-C99) compliant platforms */
Soby Mathew1ae83bc2017-05-10 11:48:40 +010013
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*/