sortix-mirror/libmaxsi/decl/errno_values.h

39 lines
656 B
C
Raw Normal View History

#ifndef _ERRNO_VALUES_DECL
#define _ERRNO_VALUES_DECL
#define ENOTBLK 12
#define ENODEV 13
#define EWOULDBLOCK 14
#define EBADF 15
#define EOVERFLOW 16
#define ENOENT 17
#define ENOSPC 18
#define EEXIST 19
#define EROFS 20
#define EINVAL 21
#define ENOTDIR 22
#define ENOMEM 23
#define ERANGE 24
#define EISDIR 25
#define EPERM 26
#define EIO 27
2011-11-22 17:06:40 +00:00
#define ENOEXEC 28
#define EACCES 29
#define ESRCH 30
#define ENOTTY 31
#define ECHILD 32
2012-01-14 15:09:30 +00:00
#define ENOSYS 33
2012-01-18 14:40:31 +00:00
#define ENOTSUP 34
#define EBLOCKING 35
2012-03-06 12:36:44 +00:00
#define EINTR 36
2012-03-10 22:12:31 +00:00
#define ENOTEMPTY 37
2012-03-10 22:18:27 +00:00
#define EBUSY 38
2012-03-11 19:11:32 +00:00
#define EPIPE 39
2012-03-11 19:44:57 +00:00
#define EILSEQ 40
2012-03-03 00:06:32 +00:00
#define ELAKE 41
2012-03-12 00:37:50 +00:00
#define EMFILE 42
2012-03-12 00:46:12 +00:00
#define EOPNOTSUPP ENOTSUP
#endif