* Helper for allocating memory in tests. */
| 22 | * Helper for allocating memory in tests. |
| 23 | */ |
| 24 | void *t_malloc(size_t size) |
| 25 | { |
| 26 | void *ret; |
| 27 | ret = malloc(size); |
| 28 | assert(ret); |
| 29 | return ret; |
| 30 | } |
| 31 | |
| 32 | /* |
| 33 | * Helper for binding socket to an ephemeral port. |
no outgoing calls