aboutsummaryrefslogtreecommitdiff
path: root/sys/base/io/write.c
blob: 63df664a25d1c1348bac99d4fa72b9c4f909397f (plain)
1
2
3
4
5
6
7
#include "internal.h"

int
io·write(io·Stream *s, int sz, int n, void *buf)
{
    return fwrite(buf, sz, n, s);
}