1 // SPDX-License-Identifier: BSD-3-Clause
2 /*
3  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
4  */
5 
6 #include <stdio.h>
7 
8 #include "trace.h"
9 
10 #if TRACE_LEVEL >= TRACE_LEVEL_ERROR
11 
trace_puts(const char * str)12 void trace_puts(const char *str)
13 {
14 	puts(str);
15 }
16 
17 #endif /* TRACE_LEVEL >= TRACE_LEVEL_ERROR */
18