]> git.sur5r.net Git - cc65/blob - libsrc/common/rmdir.s
Add LZ4 decompression support
[cc65] / libsrc / common / rmdir.s
1 ;
2 ; Oliver Schmidt, 2005-08-30
3 ;
4 ; int __fastcall__ rmdir (const char* name);
5 ;
6
7         .export         _rmdir
8
9         .import         __sysrmdir
10         .import         __mappederrno
11
12
13 ;--------------------------------------------------------------------------
14
15 .proc   _rmdir
16
17         jsr     __sysrmdir      ; Call the machine specific function
18         jmp     __mappederrno   ; Store into _oserror, set errno, return 0/-1
19
20 .endproc