Mercurial > hg > cdb
view error.c @ 3:c7c914a43c06
fix errno conflict (twice?)
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Wed, 29 Jan 2025 12:37:44 +0000 |
| parents | 2cb46628feec |
| 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;
