summaryrefslogtreecommitdiff
path: root/src/trynpbg1.c
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-03 23:09:39 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-03 23:09:39 +0200
commita42c2a846d854d5b1ad42e27ee7091c72d2b5080 (patch)
tree2278f8fca96c02a0c7f97a40fb85f9e8a4b2deeb /src/trynpbg1.c
parente6e9663d40f7aab9e1982dddcaa11386551ad182 (diff)
convert to the meson build system
Diffstat (limited to 'src/trynpbg1.c')
-rw-r--r--src/trynpbg1.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/trynpbg1.c b/src/trynpbg1.c
deleted file mode 100644
index da3e47e..0000000
--- a/src/trynpbg1.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "fifo.h"
-#include "open.h"
-#include "select.h"
-
-#define FN "temp-trynpbg1.fifo"
-
-int main()
-{
- int flagbug;
- struct timeval instant;
- fd_set rfds;
-
- flagbug = 0;
- if (fifo_make(FN, 0600) != -1) {
- close(0);
- if (open_read(FN) == 0) {
- FD_ZERO(&rfds);
- FD_SET(0, &rfds);
- instant.tv_sec = instant.tv_usec = 0;
- if (select(1, &rfds, (fd_set *)0, (fd_set *)0, &instant) > 0) flagbug = 1;
- }
- unlink(FN);
- }
- _exit(!flagbug);
-}