Mercurial > hg > cdb
view error.c @ 6:fb33dc49cd48
use .ac by hand for the time being
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Wed, 29 Jan 2025 12:43:39 +0000 |
| parents | c7c914a43c06 |
| children |
line wrap: on
line source
/* warning: as coverage improves here, should update error_{str,temp} */ #include <errno.h> int error_intr = EINTR; int error_nomem = ENOMEM; int error_noent = ENOENT; int error_txtbsy = ETXTBSY; int error_io = EIO; int error_exist = EEXIST; int error_timeout = ETIMEDOUT; int error_inprogress = EINPROGRESS; int error_wouldblock = EWOULDBLOCK; int error_again = EAGAIN; int error_pipe = EPIPE; int error_perm = EPERM; int error_acces = EACCES; int error_nodevice = ENXIO; int error_proto = EPROTO;
