summaryrefslogtreecommitdiff
path: root/v4.0/src/TOOLS/BLD/INC/ERRNO.H
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/TOOLS/BLD/INC/ERRNO.H')
-rw-r--r--v4.0/src/TOOLS/BLD/INC/ERRNO.H50
1 files changed, 50 insertions, 0 deletions
diff --git a/v4.0/src/TOOLS/BLD/INC/ERRNO.H b/v4.0/src/TOOLS/BLD/INC/ERRNO.H
new file mode 100644
index 0000000..0925338
--- /dev/null
+++ b/v4.0/src/TOOLS/BLD/INC/ERRNO.H
@@ -0,0 +1,50 @@
1/***
2*errno.h - system wide error numbers (set by system calls)
3*
4* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
5*
6*Purpose:
7* This file defines the system-wide error numbers (set by
8* system calls). Conforms to the XENIX standard. Extended
9* for compatibility with Uniforum standard.
10* [System V]
11*
12*******************************************************************************/
13
14#define EZERO 0
15#define EPERM 1
16#define ENOENT 2
17#define ESRCH 3
18#define EINTR 4
19#define EIO 5
20#define ENXIO 6
21#define E2BIG 7
22#define ENOEXEC 8
23#define EBADF 9
24#define ECHILD 10
25#define EAGAIN 11
26#define ENOMEM 12
27#define EACCES 13
28#define EFAULT 14
29#define ENOTBLK 15
30#define EBUSY 16
31#define EEXIST 17
32#define EXDEV 18
33#define ENODEV 19
34#define ENOTDIR 20
35#define EISDIR 21
36#define EINVAL 22
37#define ENFILE 23
38#define EMFILE 24
39#define ENOTTY 25
40#define ETXTBSY 26
41#define EFBIG 27
42#define ENOSPC 28
43#define ESPIPE 29
44#define EROFS 30
45#define EMLINK 31
46#define EPIPE 32
47#define EDOM 33
48#define ERANGE 34
49#define EUCLEAN 35
50#define EDEADLOCK 36