Git Browser for ODROID
Code Review
Sign In
git.odroid.com
/
yocto
/
rtos_sdk
/
libc
/
refs/heads/odroidc5-v2023.01
/
.
/
aml
/
aml_fflush.c
blob: 6aabc5033629c7d34d68c99d9ce06233ea44faf5 [
file
] [
log
] [
blame
]
xiaohu.huang
bf62d7b
2023-07-18 18:02:43 +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_fflush.h"
8
9
int
fflush
(
FILE
*
stream
)
10
{
11
(
void
)
stream
;
12
13
return
0
;
14
}