blob: a0df51b65dbc970cc8b1e8affe568d11118cec4f [file] [log] [blame]
Julian Hall4e15dcd2023-01-17 12:27:54 +00001// 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#include <trace.h>
8
9#if TRACE_LEVEL >= TRACE_LEVEL_ERROR
10
11void trace_puts(const char *str)
12{
13 puts(str);
14}
15
16#endif /* TRACE_LEVEL >= TRACE_LEVEL_ERROR */