summary refs log tree commit diff
path: root/src/coe.c
blob: 50b23973b7e5449a3ebb16b58ddf0fee418f5809 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* Public domain. */

#include <fcntl.h>
#include "coe.h"

int coe(int fd)
{
  return fcntl(fd,F_SETFD,1);
}