From: Chris Hanson Date: Wed, 22 Oct 1997 05:22:06 +0000 (+0000) Subject: Define reasonable (unsigned) type for pid_t under NT. X-Git-Tag: 20090517-FFI~4983 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=434eab40b9195a480876af9dbebae23b593b4e2d;p=mit-scheme.git Define reasonable (unsigned) type for pid_t under NT. --- diff --git a/v7/src/microcode/posixtyp.h b/v7/src/microcode/posixtyp.h index ceb5d690c..7c974f475 100644 --- a/v7/src/microcode/posixtyp.h +++ b/v7/src/microcode/posixtyp.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: posixtyp.h,v 1.13 1995/10/24 05:10:00 cph Exp $ +$Id: posixtyp.h,v 1.14 1997/10/22 05:22:06 cph Exp $ -Copyright (c) 1990-95 Massachusetts Institute of Technology +Copyright (c) 1990-97 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -113,6 +113,11 @@ MIT in each case. */ #define _CLOCK_T #endif +#ifndef _PID_T +#define _PID_T +typedef unsigned long pid_t; +#endif + #endif #ifdef _OS2