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

#include <sys/types.h>
#include <sys/sendfile.h>

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