Tamas Ban | d2b2f09 | 2019-01-23 22:29:14 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2019, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_CLIENT_H__ |
| 9 | #define __TFM_CLIENT_H__ |
| 10 | |
| 11 | #include "psa_client.h" /* psa_invec, psa_outvec */ |
| 12 | |
| 13 | #ifdef __cplusplus |
| 14 | extern "C" { |
| 15 | #endif |
| 16 | |
| 17 | /* Intentionally empty, the aim of this file to include psa_client.h, which |
| 18 | * contains the psa_invec and psa_outvec definitions in TF-M project, but these |
| 19 | * might has different location in another projects. |
| 20 | */ |
| 21 | #ifdef __cplusplus |
| 22 | } |
| 23 | #endif |
| 24 | |
| 25 | #endif /* __TFM_CLIENT_H__ */ |