summaryrefslogtreecommitdiff
path: root/pkgtools/libnbcompat/files/db/pread.c
blob: 81189750c7dc7016b32f08a5754b9ec95ed3f007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* $NetBSD: pread.c,v 1.1 2010/04/20 00:32:22 joerg Exp $ */

static ssize_t
working_pread(int fd, void *buf, size_t nbytes, off_t off)
{
	if (lseek(fd, off, SEEK_SET) == -1)
		return -1;
	return read(fd, buf, nbytes);
}

#undef pread
#define	pread(fd, buf, nbytes, off) working_pread(fd, buf, nbytes,off)