]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libc/9sys/write.c
allow # netpath in dial string
[plan9front.git] / sys / src / libc / 9sys / write.c
1 #include        <u.h>
2 #include        <libc.h>
3
4 long
5 write(int fd, void *buf, long n)
6 {
7         return pwrite(fd, buf, n, -1LL);
8 }