]> git.sur5r.net Git - cc65/blob - libsrc/common/remove.s
Use 'return0' for default 'doesclrscrafterexit()' implementation in libsrc/common.
[cc65] / libsrc / common / remove.s
1 ;
2 ; Ullrich von Bassewitz, 2003-08-12
3 ;
4 ; int __fastcall__ remove (const char* name);
5 ;
6
7         .export         _remove
8
9         .import         __sysremove
10         .import         __mappederrno
11
12
13 ;--------------------------------------------------------------------------
14
15 .proc   _remove
16
17         jsr     __sysremove     ; Call the machine specific function
18         jmp     __mappederrno   ; Store into _oserror, set errno, return 0/-1
19
20 .endproc
21
22
23
24