rustit/mirror_runit/runit-2.1.2/src/coe.c

10 lines
109 B
C
Raw Normal View History

2024-03-25 00:51:57 +01:00
/* Public domain. */
#include <fcntl.h>
#include "coe.h"
int coe(int fd)
{
return fcntl(fd,F_SETFD,1);
}