Added unlink()

git-svn-id: svn://svn.cc65.org/cc65/trunk@2210 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-06-12 08:43:57 +00:00
parent d8449e18cd
commit 737bf33c38
2 changed files with 14 additions and 0 deletions

View File

@ -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
View 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