1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00

Add declaration of __errno

git-svn-id: svn://svn.cc65.org/cc65/trunk@1553 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-20 18:14:53 +00:00
parent cd552515fb
commit f65039f490

View File

@ -2,8 +2,11 @@
; Ullrich von Bassewitz, 16.05.2000
;
; Error codes, must match the values in the C headers
; errno variable
.global __errno
; Error codes, must match the values in the C headers
ENOENT = 1 ; No such file or directory
ENOMEM = 2 ; Out of memory
EACCES = 3 ; Permission denied