Gabor Toth | ed8305b | 2024-09-24 12:47:26 +0200 | [diff] [blame] | 1 | // 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 | |||||
12 | void trace_puts(const char *str) | ||||
13 | { | ||||
14 | puts(str); | ||||
15 | } | ||||
16 | |||||
17 | #endif /* TRACE_LEVEL >= TRACE_LEVEL_ERROR */ |