1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

Renamed setoserror to seterrnofromoserror to avoid clashes.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3838 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2008-04-15 06:55:35 +00:00
parent 6c5c0be79f
commit 545df804bb
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@
.global __maperrno, __osmaperrno
.global __seterrno
.global oserrcheck, setoserror
.global seterrnofromoserror
; Error codes, must match the values in the C headers
.enum

View File

@ -16,13 +16,13 @@
__maperrno:
lda __oserror ; Get the error code
beq L9 ; Jump if no error
setoserror:
seterrnofromoserror:
ldx #$00 ; Clear error
stx __oserror
jsr __osmaperrno ; Map the code
sta __errno
stx __errno+1
L9: rts
L9: rts