c语言中,产生error需要用到errno.h的函数具体都有哪些。
c语言中,产生error需要用到errno.h的函数具体都有哪些。
日期:2013-08-12 15:59:48 人气:4
errno.h里面的内容都是如下格式:
#define EPERM 1 /* Operation not permitted */
#define ENOENT 2 /* No such file or directory */
#define ESRCH 3 /* No such process */
#define EINTR 4 /* Interrupted system call */
...................