Import Upstream version 20180207
[hcoop/debian/mlton.git] / runtime / basis / Posix / IO / lseek.c
1 #include "platform.h"
2
3 C_Errno_t(C_Off_t) Posix_IO_lseek (C_Fd_t f, C_Off_t i, C_Int_t j) {
4 return lseek (f, i, j);
5 }