summaryrefslogtreecommitdiff
path: root/include/wait.h
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-09 14:41:53 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-09 14:41:53 +0200
commit5fadc0cbb8577c61d66bd6f19ceaf0507c11e23b (patch)
tree684758441f5b431d0008253243034b6a4a29417c /include/wait.h
parent249866e3d1e11dc72eaa1305f4bb479ded92ef38 (diff)
initial clang-format
Diffstat (limited to 'include/wait.h')
-rw-r--r--include/wait.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wait.h b/include/wait.h
index f7cfc60..af8a979 100644
--- a/include/wait.h
+++ b/include/wait.h
@@ -7,14 +7,14 @@
@source s/qmail
*/
-int wait_pid(int *,int);
+int wait_pid(int *, int);
int wait_nohang(int *);
int wait_stop();
int wait_stopnohang();
-#define wait_crashed(w) ((w) & 127)
+#define wait_crashed(w) ((w) & 127)
#define wait_exitcode(w) ((w) >> 8)
-#define wait_stopsig(w) ((w) >> 8)
-#define wait_stopped(w) (((w) & 127) == 127)
+#define wait_stopsig(w) ((w) >> 8)
+#define wait_stopped(w) (((w) & 127) == 127)
#endif