mirror of
https://github.com/cc65/cc65.git
synced 2024-12-21 20:29:24 +00:00
Added unlink()
git-svn-id: svn://svn.cc65.org/cc65/trunk@2210 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
d8449e18cd
commit
737bf33c38
@ -138,6 +138,7 @@ S_OBJS = _fdesc.o \
|
||||
time.o \
|
||||
tolower.o \
|
||||
toupper.o \
|
||||
unlink.o \
|
||||
vfprintf.o \
|
||||
vprintf.o \
|
||||
vsprintf.o \
|
||||
|
13
libsrc/common/unlink.s
Normal file
13
libsrc/common/unlink.s
Normal file
@ -0,0 +1,13 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 2003-06-12
|
||||
;
|
||||
; int __fastcall__ unlink (const char* name);
|
||||
;
|
||||
|
||||
.export _unlink
|
||||
.import _remove
|
||||
|
||||
; unlink is just an alias for remove
|
||||
|
||||
_unlink = _remove
|
||||
|
Loading…
Reference in New Issue
Block a user