From 75fbc5c5e3c442782d6f83139c73696766b16d6f Mon Sep 17 00:00:00 2001 From: uz Date: Thu, 3 Jun 2010 21:40:32 +0000 Subject: [PATCH] Removed maperrno() since it's no longer needed. git-svn-id: svn://svn.cc65.org/cc65/trunk@4706 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/Makefile | 1 - libsrc/common/maperrno.s | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 libsrc/common/maperrno.s diff --git a/libsrc/common/Makefile b/libsrc/common/Makefile index e3103e460..54454bb80 100644 --- a/libsrc/common/Makefile +++ b/libsrc/common/Makefile @@ -138,7 +138,6 @@ S_OBJS = _cwd.o \ longjmp.o \ ltoa.o \ malloc.o \ - maperrno.o \ memchr.o \ memcmp.o \ memcpy.o \ diff --git a/libsrc/common/maperrno.s b/libsrc/common/maperrno.s deleted file mode 100644 index cf8872e11..000000000 --- a/libsrc/common/maperrno.s +++ /dev/null @@ -1,28 +0,0 @@ -; -; Ullrich von Bassewitz, 24.06.2000 -; -; void _maperrno(void); -; /* Map an OS error to a system independent error code */ -; -; Second entry setoserror maps the OS error code in A to an errno code -; and stores it into errno. _oserror is cleared. - - - .include "errno.inc" - - -.code - -__maperrno: - lda __oserror ; Get the error code - beq L9 ; Jump if no error -seterrnofromoserror: - ldx #$00 ; Clear error - stx __oserror - jsr __osmaperrno ; Map the code - sta __errno - stx __errno+1 -L9: rts - - - -- 2.39.5