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(); }