sig
  val lseek :
    Extlib.ExtUnix.Unix.file_descr ->
    int64 -> Extlib.ExtUnix.Unix.seek_command -> int64
  val truncate : string -> int64 -> unit
  val ftruncate : Extlib.ExtUnix.Unix.file_descr -> int64 -> unit
  type stats =
    Unix.LargeFile.stats = {
    st_dev : int;
    st_ino : int;
    st_kind : Extlib.ExtUnix.Unix.file_kind;
    st_perm : Extlib.ExtUnix.Unix.file_perm;
    st_nlink : int;
    st_uid : int;
    st_gid : int;
    st_rdev : int;
    st_size : int64;
    st_atime : float;
    st_mtime : float;
    st_ctime : float;
  }
  val stat : string -> Extlib.ExtUnix.Unix.LargeFile.stats
  val lstat : string -> Extlib.ExtUnix.Unix.LargeFile.stats
  val fstat :
    Extlib.ExtUnix.Unix.file_descr -> Extlib.ExtUnix.Unix.LargeFile.stats
end