| 500 | } |
| 501 | |
| 502 | int Socket(int domain, int type, int protocol) |
| 503 | { |
| 504 | int fd = socket(domain, type, protocol); |
| 505 | if (fd < 0) |
| 506 | unix_error("socket error"); |
| 507 | return fd; |
| 508 | } |
| 509 | |
| 510 | void *Calloc(size_t nmemb, size_t size) |
| 511 | { |
no test coverage detected