From: Guido van Rossum Date: Fri, 6 Jun 1997 21:16:41 +0000 (+0000) Subject: Add sys/types.h include for pid_t when threading. X-Git-Tag: v1.5a3~348 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=295b8e5608a0680f322223fc2b45b7349e74fd4b;p=python Add sys/types.h include for pid_t when threading. --- diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index e62be1fef0..89cab8973c 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -87,6 +87,7 @@ PERFORMANCE OF THIS SOFTWARE. */ #ifdef WITH_THREAD +#include /* For pid_t */ #include "thread.h" static long main_thread; static pid_t main_pid;