1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef UNITY_CONFIG_H
9 #define UNITY_CONFIG_H
10 #include <fwk_log.h>
11 #define UNITY_OUTPUT_CHAR(a) fwk_io_putch(fwk_io_stdout, a)
12 #define UNITY_OUTPUT_FLUSH()
13 
14 #endif
15