]> git.sur5r.net Git - cc65/blob - unlink.s
b21086821bcb2e548a4b49a4eb16901b7c13fb3d
[cc65] / 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