summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/errnum.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/include/errnum.h b/include/errnum.h
index 5faa65c..eac3e42 100644
--- a/include/errnum.h
+++ b/include/errnum.h
@@ -11,19 +11,20 @@
typedef enum {
ESUCCESS = 0,
- // Unknown error
- ENOMEM = 101, // Not enough memory
- EINTR, // Interrupt
- EBUSTO, // Bus timeout
- EUNEXPARG, // Unexpected argument
- EATRANGE, // Invalid disk number
- EATALRDY, // Disk already attached
- EATNOT, // Disk not attached
- EATOPEN, // Error opening file
- EATOTHER, // File already attached to other drive
- ERUNNING, // CPU is running
- EINVAL, // Invalid argument
- EEOF, // Unexpected EOF
+ // Unknown error
+ ENOMEM = 101, // Not enough memory
+ EINTR, // Interrupt
+ EBUSTO, // Bus timeout
+ EUNEXPARG, // Unexpected argument
+ EATRANGE, // Invalid disk number
+ EATALRDY, // Disk already attached
+ EATNOT, // Disk not attached
+ EATOPEN, // Error opening file
+ EATOTHER, // File already attached to other drive
+ ERUNNING, // CPU is running
+ EINVAL, // Invalid argument
+ EEOF, // Unexpected EOF
+ EFULL // Disk full
} ERRNUM;