runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

coe.c (109B)


      1 /* Public domain. */
      2 
      3 #include <fcntl.h>
      4 #include "coe.h"
      5 
      6 int coe(int fd)
      7 {
      8   return fcntl(fd,F_SETFD,1);
      9 }