#include #include #include "err.h" void perr(const char *s) { fprintf(stderr, "%s\n", s); } void efatal(const char *s) { perror(s); exit(1); }