1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-20 20:29:31 +00:00
cc65/libsrc/common/rmdir.s
cuz c732d3e360 New stuff contributed by Oliver Schmidt
git-svn-id: svn://svn.cc65.org/cc65/trunk@3608 b7a2c559-68d2-44c3-8de9-860c34a00d81
2005-08-31 20:11:45 +00:00

21 lines
435 B
ArmAsm

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