dos_compilers/Manx Aztec C86 v52a/LIB/SYSIO/UNLINKC.ASM
2024-07-02 08:25:54 -07:00

16 lines
211 B
NASM

; :ts=8
;Copyright (C) 1983 by Manx Software Systems
include lmacros.h
ifdef FARPROC
extrn _unlink_:far
else
extrn _unlink_:near
endif
procdef unlink
jmp _unlink_
pend unlink
finish
end