TAIL

Harald Arnesen <skogtun@gmail.com>

Taken directly from 4.3BSD with one small change:
www.tuhs.org/Archive/Distributions/UCB/4.3BSD/src.tar.gz

> #include <sys/file.h>

was changed to:

> #ifdef UNIX
> #include <sys/file.h>
> #else
> #define L_SET  SEEK_SET
> #define L_INCR SEEK_CUR
> #define L_XTND SEEK_END
> #endif

Compiles and links with OpenWatcom C. Seems to work as expected.

March 28 2020

