]> diplodocus.org Git - nmh/blobdiff - sbr/pidwait.c
ssequal.c: Move interface to own file.
[nmh] / sbr / pidwait.c
index a6dc27f9c2f4a2bfa2cab21dcf030eceb334bcc1..8ccc6891eff97c824a71e5e93b87e474363910a1 100644 (file)
@@ -1,14 +1,12 @@
-
-/*
- * pidwait.c -- wait for child to exit
+/* pidwait.c -- wait for child to exit
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
  * complete copyright information.
  */
 
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
  * complete copyright information.
  */
 
-#include <h/mh.h>
-#include <h/signals.h>
+#include "h/mh.h"
+#include "h/signals.h"
 
 int
 pidwait (pid_t id, int sigsok)
 
 int
 pidwait (pid_t id, int sigsok)
@@ -33,5 +31,5 @@ pidwait (pid_t id, int sigsok)
        SIGNAL (SIGQUIT, qstat);
     }
 
        SIGNAL (SIGQUIT, qstat);
     }
 
-    return (pid == -1 ? -1 : status);
+    return pid == -1 ? -1 : status;
 }
 }