git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Framework for exporting system header to user space (#59)
[lunaix-os.git]
/
lunaix-os
/
includes
/
usr
/
lunaix
/
status.h
1
#ifndef _LUNAIX_UHDR_STATUS_H
2
#define _LUNAIX_UHDR_STATUS_H
3
4
#define ENOMEM -3
5
#define EINVAL -6
6
#define EINTR -7
7
#define EMFILE -8
8
#define ENOENT -9
9
#define ENAMETOOLONG -10
10
#define ENOTDIR -11
11
#define EEXIST -12
12
#define EBADF -13
13
#define ENOTSUP -14
14
#define EIO -15
15
#define ELOOP -16
16
#define ENOTEMPTY -17
17
#define EROFS -18
18
#define EISDIR -19
19
#define EBUSY -20
20
#define EXDEV -21
21
#define ENODEV -22
22
#define ERANGE -23
23
#define ENOTDEV -24
24
#define EOVERFLOW -25
25
#define ENOTBLK -26
26
#define ENOEXEC -27
27
#define E2BIG -28
28
#define ELIBBAD -29
29
#define EAGAIN -30
30
#define EDEADLK -31
31
#define EDQUOT -32
32
#define EPERM -33
33
#define EACCESS -34
34
35
#endif /* _LUNAIX_UHDR_STATUS_H */