mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
131a5cad09
__directerrno and moved both to errno.s. Changed several sources to use these functions. Needs testing. git-svn-id: svn://svn.cc65.org/cc65/trunk@4718 b7a2c559-68d2-44c3-8de9-860c34a00d81
21 lines
438 B
ArmAsm
21 lines
438 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
|