]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/portab/waitpid.c
Test suite/platformtest.sh: Detect when tests have been skipped
[ngircd-alex.git] / src / portab / waitpid.c
index 0c169601df3fedebca97461cd04c6a2c0ba9ffdd..921dd3d6c3980d72c897a69c1a70a0c64469967f 100644 (file)
@@ -1,22 +1,21 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- *
+ */
+
+#include "portab.h"
+
+/**
+ * @file
  * waitpid() implementation. Public domain.
  * Written by Steven D. Blackford for the NeXT system.
- *
  */
 
-#include "portab.h"
+#ifndef HAVE_WAITPID
 
-#include "imp.h"
 #include <string.h>
 #include <stdlib.h>
 #include <sys/types.h>
 
-#include "exp.h"
-
-#ifndef HAVE_WAITPID
-
 GLOBAL int
 waitpid(pid, stat_loc, options)
 int pid, *stat_loc, options;