blob: a0df51b65dbc970cc8b1e8affe568d11118cec4f [file] [log] [blame]
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
*/
#include <stdio.h>
#include <trace.h>
#if TRACE_LEVEL >= TRACE_LEVEL_ERROR
void trace_puts(const char *str)
{
puts(str);
}
#endif /* TRACE_LEVEL >= TRACE_LEVEL_ERROR */