xiaohu.huang | a341cbe | 2022-10-17 15:51:22 +0800 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: MIT | ||||
5 | */ | ||||
6 | |||||
7 | #include "aml_putchar.h" | ||||
8 | #include "uart.h" | ||||
9 | |||||
10 | int putchar(int c) | ||||
11 | { | ||||
12 | vUartPutc(c); | ||||
13 | |||||
14 | return 0; | ||||
15 | } |