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

int
io·stat(io·Stream *s, io·Stat *buf)
{
    return fstat(fileno(s), buf);
}