Julian Hall | 4e15dcd | 2023-01-17 12:27:54 +0000 | [diff] [blame^] | 1 | // 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 | |||||
11 | void trace_puts(const char *str) | ||||
12 | { | ||||
13 | puts(str); | ||||
14 | } | ||||
15 | |||||
16 | #endif /* TRACE_LEVEL >= TRACE_LEVEL_ERROR */ |