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

16 lines
206 B
NASM

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