1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/common/rmdir.s
2022-08-28 22:37:33 +02:00

21 lines
440 B
ArmAsm

;
; Oliver Schmidt, 2005-08-30
;
; int __fastcall__ rmdir (const char* name);
;
.export _rmdir
.import __sysrmdir
.import ___mappederrno
;--------------------------------------------------------------------------
.proc _rmdir
jsr __sysrmdir ; Call the machine specific function
jmp ___mappederrno ; Store into __oserror, set errno, return 0/-1
.endproc