diff src/sysdep.h @ 432:3a7e78e1142d r21-2-24

Import from CVS: tag r21-2-24
author cvs
date Mon, 13 Aug 2007 11:29:58 +0200
parents a5df635868b2
children 8de8e3f6228a
line wrap: on
line diff
--- a/src/sysdep.h	Mon Aug 13 11:29:10 2007 +0200
+++ b/src/sysdep.h	Mon Aug 13 11:29:58 2007 +0200
@@ -44,7 +44,12 @@
 
 /* Wait for subprocess with process id `pid' to terminate and
    make sure it will get eliminated (not remain forever as a zombie) */
+#ifdef WINDOWSNT
+#include <windows.h>
+void wait_for_termination (HANDLE pid);
+#else
 void wait_for_termination (int pid);
+#endif
 
 /* flush any pending output
  * (may flush input as well; it does not matter the way we use it)