mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
b7d7e6bb04
Rewrote remove(). Added rename(). git-svn-id: svn://svn.cc65.org/cc65/trunk@2272 b7a2c559-68d2-44c3-8de9-860c34a00d81
25 lines
450 B
ArmAsm
25 lines
450 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2003-08-12
|
|
;
|
|
; int __fastcall__ remove (const char* name);
|
|
;
|
|
|
|
.export _remove
|
|
|
|
.import __sysremove
|
|
.import oserrcheck
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
.proc _remove
|
|
|
|
jsr __sysremove ; Call the machine specific function
|
|
jmp oserrcheck ; Store into _oserror, set errno, return 0/-1
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|