skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

trysendfile.c (108B)


      1 /* ISC license. */
      2 
      3 #include <sys/sendfile.h>
      4 
      5 int main (void)
      6 {
      7   sendfile(1, 0, 0, 4096) ;
      8   return 0 ;
      9 }