aboutsummaryrefslogtreecommitdiff
path: root/src/base/io/read.c
blob: b0ed3d244fe9d4144ae45737728890948f37e3ff (plain)
1
2
3
4
5
6
7
#include "internal.h"

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