mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-09 12:27:50 -04:00
13 lines
318 B
C
13 lines
318 B
C
/* $NetBSD: pwrite.c,v 1.1 2010/04/20 00:32:23 joerg Exp $ */
|
|
|
|
static ssize_t
|
|
working_pwrite(int fd, const void *buf, size_t nbytes, off_t off)
|
|
{
|
|
if (lseek(fd, off, SEEK_SET) == -1)
|
|
return -1;
|
|
return write(fd, buf, nbytes);
|
|
}
|
|
|
|
#undef pwrite
|
|
#define pwrite(fd, buf, nbytes, off) working_pwrite(fd, buf, nbytes,off)
|