1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/libmaxsi/decl/errno_values.h

37 lines
629 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 12:06:40 -05:00
#define ENOEXEC 28
#define EACCESS 29
#define ESRCH 30
#define ENOTTY 31
#define ECHILD 32
2012-01-14 10:09:30 -05:00
#define ENOSYS 33
2012-01-18 09:40:31 -05:00
#define ENOTSUP 34
#define EBLOCKING 35
2012-03-06 07:36:44 -05:00
#define EINTR 36
2012-03-10 17:12:31 -05:00
#define ENOTEMPTY 37
2012-03-10 17:18:27 -05:00
#define EBUSY 38
2012-03-11 15:11:32 -04:00
#define EPIPE 39
2012-03-11 15:44:57 -04:00
#define EILSEQ 40
2012-03-02 19:06:32 -05:00
#define ELAKE 41
2012-03-11 20:37:50 -04:00
#define EMFILE 42
#endif