]> granicus.if.org Git - python/commitdiff
Add sys/types.h include for pid_t when threading.
authorGuido van Rossum <guido@python.org>
Fri, 6 Jun 1997 21:16:41 +0000 (21:16 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 6 Jun 1997 21:16:41 +0000 (21:16 +0000)
Modules/signalmodule.c

index e62be1fef03b845f098d6c2ba26fb246d5d68610..89cab8973c4c99f2fe3411ae11d0a1ccdc378cd5 100644 (file)
@@ -87,6 +87,7 @@ PERFORMANCE OF THIS SOFTWARE.
 */
 
 #ifdef WITH_THREAD
+#include <sys/types.h> /* For pid_t */
 #include "thread.h"
 static long main_thread;
 static pid_t main_pid;