1 /*
2  * Copyright (C) 2019-2020 Alibaba Group Holding Limited
3  */
4 
5 #ifndef __INCLUDE_SYS_IOCTL_H
6 #define __INCLUDE_SYS_IOCTL_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 int ioctl(int fd, int req, ...);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif /* __INCLUDE_SYS_IOCTL_H */
19