summaryrefslogtreecommitdiff
path: root/include/errnum.h
diff options
context:
space:
mode:
authorLeo C.2024-07-22 14:09:10 +0200
committerLeo C.2024-07-22 14:09:10 +0200
commitb6cf9ca456a60870373c9afc848b9bb9b22c431c (patch)
tree8a282d0f2224a17dda9319cb3d09e1c6e39cdd69 /include/errnum.h
parent465090d410f8fd09085a54b0fbee5bf33ae99cc1 (diff)
downloadz180-stamp-b6cf9ca456a60870373c9afc848b9bb9b22c431c.zip
add fat command cp
Diffstat (limited to 'include/errnum.h')
-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;