|
Last change
on this file since 4810254 was f7428b1, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Started to rework include files.
|
-
Property mode
set to
100644
|
|
File size:
999 bytes
|
| Rev | Line | |
|---|
| [f40a309] | 1 |
|
|---|
| 2 | /*
|
|---|
| 3 | ============================================================================
|
|---|
| 4 | errno.h - Standard C library error codes
|
|---|
| 5 | Version 2 -- 1987-03-06 -- D.N. Lynx Crowe
|
|---|
| 6 | ============================================================================
|
|---|
| 7 | */
|
|---|
| 8 |
|
|---|
| [f7428b1] | 9 | #pragma once
|
|---|
| [f40a309] | 10 |
|
|---|
| 11 | #define EPERM 1
|
|---|
| 12 | #define ENOENT 2
|
|---|
| 13 | #define ESRCH 3
|
|---|
| 14 | #define EINTR 4
|
|---|
| 15 | #define EIO 5
|
|---|
| 16 | #define ENXIO 6
|
|---|
| 17 | #define E2BIG 7
|
|---|
| 18 | #define ENOEXEC 8
|
|---|
| 19 | #define EBADF 9
|
|---|
| 20 | #define ECHILD 10
|
|---|
| 21 | #define EAGAIN 11
|
|---|
| 22 | #define ENOMEM 12
|
|---|
| 23 | #define EACCES 13
|
|---|
| 24 | #define EFAULT 14
|
|---|
| 25 | #define ENOTBLK 15
|
|---|
| 26 | #define EBUSY 16
|
|---|
| 27 | #define EEXIST 17
|
|---|
| 28 | #define EXDEV 18
|
|---|
| 29 | #define ENODEV 19
|
|---|
| 30 | #define ENOTDIR 20
|
|---|
| 31 | #define EISDIR 21
|
|---|
| 32 | #define EINVAL 22
|
|---|
| 33 | #define ENFILE 23
|
|---|
| 34 | #define EMFILE 24
|
|---|
| 35 | #define ENOTTY 25
|
|---|
| 36 | #define ETXTBSY 26
|
|---|
| 37 | #define EFBIG 27
|
|---|
| 38 | #define ENOSPC 28
|
|---|
| 39 | #define ESPIPE 29
|
|---|
| 40 | #define EROFS 30
|
|---|
| 41 | #define EMLINK 31
|
|---|
| 42 | #define EPIPE 32
|
|---|
| 43 |
|
|---|
| 44 | /* math software */
|
|---|
| 45 |
|
|---|
| 46 | #define EDOM 33
|
|---|
| 47 | #define ERANGE 34
|
|---|
| 48 |
|
|---|
| 49 | /* hereafter is available for specials */
|
|---|
| 50 |
|
|---|
| 51 | #define ENODSPC 35
|
|---|
| 52 | #define ERENAME 36
|
|---|
| 53 |
|
|---|
| 54 | /* ***** end of errno.h ***** */
|
|---|
| 55 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.