9 lines
109 B
C
9 lines
109 B
C
/* Public domain. */
|
|
|
|
#include <fcntl.h>
|
|
#include "coe.h"
|
|
|
|
int coe(int fd)
|
|
{
|
|
return fcntl(fd,F_SETFD,1);
|
|
}
|