summaryrefslogtreecommitdiff
path: root/src/coe.c
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-14 22:30:34 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-14 22:30:34 +0200
commit5e84d7b76ce1cccdaf0900d62a94d0d1d88cdd62 (patch)
tree61500c277101ec46af8fed732dfe1c17b941b42c /src/coe.c
parent1087d4df2a7342d2832ba3bab1843bf4a3040775 (diff)
convert to the meson build system
This removes a lot of files. Remove all conf-* files. The settings move to meson.options. Add editor config. Remove the auto_*.h files. They move to config.h.in.
Diffstat (limited to 'src/coe.c')
-rw-r--r--src/coe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coe.c b/src/coe.c
index 50b2397..26c7977 100644
--- a/src/coe.c
+++ b/src/coe.c
@@ -5,5 +5,5 @@
int coe(int fd)
{
- return fcntl(fd,F_SETFD,1);
+ return fcntl(fd,F_SETFD,FD_CLOEXEC);
}