]> git.sur5r.net Git - cc65/blobdiff - asminc/errno.inc
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / asminc / errno.inc
index 7336719737ad5c6c0fe0e7b0327208102b1fac45..83cd9a75d785db39a5af88fd34e820fd5800fac9 100644 (file)
 ; Error codes, must match the values in the C headers
 .enum
         EOK                     ; No error
-        ENOENT                         ; No such file or directory
-        ENOMEM                         ; Out of memory
-        EACCES                         ; Permission denied
-        ENODEV                         ; No such device
-        EMFILE                         ; Too many open files
-        EBUSY                          ; Device or resource busy
-        EINVAL                         ; Invalid argument
-        ENOSPC                         ; No space left on device
-        EEXIST                         ; File exists
-        EAGAIN                         ; Try again
-        EIO                            ; I/O error
-        EINTR                          ; Interrupted system call
-        ENOSYS                         ; Function not implemented
-        ESPIPE                         ; Illegal seek
+        ENOENT                  ; No such file or directory
+        ENOMEM                  ; Out of memory
+        EACCES                  ; Permission denied
+        ENODEV                  ; No such device
+        EMFILE                  ; Too many open files
+        EBUSY                   ; Device or resource busy
+        EINVAL                  ; Invalid argument
+        ENOSPC                  ; No space left on device
+        EEXIST                  ; File exists
+        EAGAIN                  ; Try again
+        EIO                     ; I/O error
+        EINTR                   ; Interrupted system call
+        ENOSYS                  ; Function not implemented
+        ESPIPE                  ; Illegal seek
         ERANGE                  ; Range error
         EBADF                   ; Bad file number
-        EUNKNOWN                       ; Unknown OS specific error - must be last!
+        EUNKNOWN                ; Unknown OS specific error - must be last!
 
         EMAX    = EUNKNOWN      ; Highest error code
 .endenum