1 /*
2  * Copyright (c) 2024 Synopsys
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef LIB_LIBC_ARCMWDT_INCLUDE_STDIO_H_
8 #define LIB_LIBC_ARCMWDT_INCLUDE_STDIO_H_
9 
10 #include_next <stdio.h>
11 
12 #ifdef fileno
13 #undef fileno
14 #endif
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 extern int fileno(FILE *file);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif /* LIB_LIBC_ARCMWDT_INCLUDE_STDIO_H_ */
27