nightmaremail

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

coe.c (92B)


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