Added seek.c, an interface to the lseek systemcall

This commit is contained in:
ceriel
1987-07-01 13:00:43 +00:00
parent 49ffe54807
commit ece9b256f3
4 changed files with 52 additions and 2 deletions

View File

@@ -7,10 +7,10 @@ INCLUDES = -I.
CFLAGS = $(INCLUDES) -O
OBJ = access.o break.o chmode.o close.o create.o filesize.o \
modtime.o lock.o open.o read.o remove.o stop.o \
system.o time.o unlock.o write.o
system.o time.o unlock.o write.o seek.o
CSRC = access.c break.c chmode.c close.c create.c filesize.c \
modtime.c lock.c open.c read.c remove.c stop.c \
system.c time.c unlock.c write.c
system.c time.c unlock.c write.c seek.c
SRC = Makefile system.h $(CSRC)
all: $(LIBSYS)