blob: caf6433063bc65ed879b36f958066ec39e943715 [file] [log] [blame]
xiaohu.huang7973d352022-11-15 17:51:53 +08001/*
2 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#ifndef __AML_FPRINTF_H__
8#define __AML_FPRINTF_H__
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#include <stdio.h>
15
16int fprintf(FILE *stream, const char *format, ...);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif