| 65 | |
| 66 | typedef int (*socket_pfn_t)(int domain, int type, int protocol); |
| 67 | typedef int (*connect_pfn_t)(int socket, const struct sockaddr *address, socklen_t address_len); |
| 68 | typedef int (*close_pfn_t)(int fd); |
| 69 | |
| 70 | typedef ssize_t (*read_pfn_t)(int fildes, void *buf, size_t nbyte); |
nothing calls this directly
no outgoing calls
no test coverage detected