summaryrefslogtreecommitdiff
path: root/src/trynpbg1.c
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-03 15:52:39 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-03 15:52:39 +0200
commita6a7d6ce079cabdaf2fa502b2e2cf15e5428ac6f (patch)
treeb88cc7a8457658d67e0321718556ac807f6bccf3 /src/trynpbg1.c
parent00be7622c428f279872f84569f098ce16150f8a8 (diff)
format files
Diffstat (limited to 'src/trynpbg1.c')
-rw-r--r--src/trynpbg1.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/trynpbg1.c b/src/trynpbg1.c
index 01a152e..da3e47e 100644
--- a/src/trynpbg1.c
+++ b/src/trynpbg1.c
@@ -1,6 +1,6 @@
-#include "select.h"
-#include "open.h"
#include "fifo.h"
+#include "open.h"
+#include "select.h"
#define FN "temp-trynpbg1.fifo"
@@ -9,16 +9,15 @@ int main()
int flagbug;
struct timeval instant;
fd_set rfds;
-
+
flagbug = 0;
- if (fifo_make(FN,0600) != -1) {
+ if (fifo_make(FN, 0600) != -1) {
close(0);
if (open_read(FN) == 0) {
FD_ZERO(&rfds);
- FD_SET(0,&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;
+ if (select(1, &rfds, (fd_set *)0, (fd_set *)0, &instant) > 0) flagbug = 1;
}
unlink(FN);
}