aboutsummaryrefslogtreecommitdiff
path: root/sys/src/write.c
blob: 16c9f7185a8995d4c15a9709501a22eecbeb6bd6 (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

int
sys·write(int fd, intptr len, void *buf, intptr *ret)
{
    long err = *ret = syscall(·Write, fd, buf, len);
    return err;
}