summaryrefslogtreecommitdiff
path: root/src/sysdeps/trysendfile.c
blob: a5a6111bdc3be95b7bf7a54abdc616d3a5bf49bb (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <sys/sendfile.h>

int main (void)
{
  sendfile(1, 0, 0, 4096) ;
  return 0 ;
}