mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 18:08:04 +00:00
25 lines
480 B
ArmAsm
25 lines
480 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2003-08-12
|
|
;
|
|
; int __fastcall__ rename (const char* oldname, const char* newname);
|
|
;
|
|
|
|
.export _rename
|
|
|
|
.import __sysrename
|
|
.import ___mappederrno
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
.proc _rename
|
|
|
|
jsr __sysrename ; Call the machine specific function
|
|
jmp ___mappederrno ; Store into __oserror, set errno, return 0/-1
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|