blob: 2e6b8cbfd79bc7d40097f5b3df41ef09dafaaad5 [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 */