出错的判断 系统调用失败时会在一个外部整数erno中留下一个错误 号给应用程序判定。 include <error h> extern int error 函数 strerror用于将 errno翻译成文字 #include <string.h> char *strerror(int errnum);出错的判断 ❖ 系统调用失败时会在一个外部整数errno中留下一个错误 号给应用程序判定。 ❖ #include <error.h> ❖ extern int errno; ❖ 函数strerror用于将errno翻译成文字 ❖ #include <string.h> ❖ char *strerror(int errnum);