cxgbe/t4_tom: Read the chip's DDP page sizes and save them in a
[freebsd-src.git] / contrib / file / src / pread.c
blob72d3a6b387ab1850955feb4dc02f7d50ae7ca6cf
1 #include "file.h"
2 #ifndef lint
3 FILE_RCSID("@(#)$File: pread.c,v 1.3 2014/09/15 19:11:25 christos Exp $")
4 #endif /* lint */
5 #include <fcntl.h>
6 #include <unistd.h>
8 ssize_t
9 pread(int fd, void *buf, size_t len, off_t off) {
10 off_t old;
11 ssize_t rv;
13 if ((old = lseek(fd, off, SEEK_SET)) == -1)
14 return -1;
16 if ((rv = read(fd, buf, len)) == -1)
17 return -1;
19 if (lseek(fd, old, SEEK_SET) == -1)
20 return -1;
22 return rv;