blob: f219b6d10d602bb92443740d392df03704ab8539 [file] [log] [blame]
Gabor Tothed8305b2024-09-24 12:47:26 +02001// SPDX-License-Identifier: BSD-3-Clause
2/*
3 * Copyright (c) 2024, 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
12void trace_puts(const char *str)
13{
14 puts(str);
15}
16
17#endif /* TRACE_LEVEL >= TRACE_LEVEL_ERROR */