1 /*
2  * Copyright (C) 2021 Alibaba Group Holding Limited
3  */
4 
5 #include <poll.h>
6 
7 extern int aos_poll(struct pollfd *fds, int nfds, int timeout);
poll(struct pollfd fds[],nfds_t nfds,int timeout)8 int poll(struct pollfd fds[], nfds_t nfds, int timeout)
9 {
10     return aos_poll(fds, nfds, timeout);
11 }
12