blob: 5d347f02a32adc11396195513a1896f23d163f41 [file] [log] [blame]
xiaohu.huanga341cbe2022-10-17 15:51:22 +08001/*
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
10int putchar(int c)
11{
12 vUartPutc(c);
13
14 return 0;
15}