| 1229 | } |
| 1230 | |
| 1231 | static int pipe(int pipefd[2]) |
| 1232 | { |
| 1233 | return (int)syscall(SYS_pipe, pipefd); |
| 1234 | } |
| 1235 | |
| 1236 | static int select(int nfds, fd_set *readfds, fd_set *writefds, |
| 1237 | fd_set *exceptfds, struct timeval *timeout) |
no outgoing calls
no test coverage detected