// 输出至标准出错文件的出错处理函数static void err_doit(int, int, const char *, va_list); /* * Nonfatal error related to a system call * Print a message and return */ void err_ret(const char *fmt, ...) { va_list ap; va_start(ap, fmt); err_doit(, errno, fmt, ap); va_…