energymech/config/sendfile.c

7 lines
118 B
C
Raw Permalink Normal View History

#include <sys/sendfile.h>
void test(int to, int from, off_t offset, size_t ct)
{
sendfile(to, from, &offset, ct);
}