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

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