Mercurial > hg > cdb
view error.c @ 17:d9c11148df3b default tip
shh...
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Thu, 28 Aug 2025 11:02:58 +0100 |
| 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;
