blob: f219b6d10d602bb92443740d392df03704ab8539 [file] [log] [blame]
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2024, 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 */