aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/linux/generic/sys-sendfile-stubs.cpp
blob: 25cd0a0eae92c51df692fa6fd57f1b138d02540b (plain)
1
2
3
4
5
6
7
8
9

#include <sys/sendfile.h>
#include <bits/ensure.h>

ssize_t sendfile(int, int, off_t *, size_t) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}