Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#include <u.h>
#include <libc.h>
long
write(int fd, void *buf, long n)
{
return pwrite(fd, buf, n, -1LL);
}