| 19 | #include <unistd.h> |
| 20 | |
| 21 | static void writex(int fd, const void *p, size_t len) |
| 22 | { |
| 23 | if (!write_all(fd, p, len)) |
| 24 | err(1, "Could not write new gossip_store"); |
| 25 | } |
| 26 | |
| 27 | static size_t readx(int fd, void *p, size_t len) |
| 28 | { |
no test coverage detected