rustit/mirror_runit/runit-2.1.2/src/coe.c
2024-03-24 23:51:57 +00:00

9 lines
109 B
C

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