]> git.sur5r.net Git - cc65/blob - libsrc/common/unlink.s
Avoid unintended file "shadowing".
[cc65] / libsrc / common / unlink.s
1 ;
2 ; Ullrich von Bassewitz, 2003-06-12
3 ;
4 ; int __fastcall__ unlink (const char* name);
5 ;
6
7         .export         _unlink
8         .import         _remove
9
10 ; unlink is just an alias for remove
11
12         _unlink = _remove
13