From 434eab40b9195a480876af9dbebae23b593b4e2d Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 22 Oct 1997 05:22:06 +0000 Subject: [PATCH] Define reasonable (unsigned) type for pid_t under NT. --- v7/src/microcode/posixtyp.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 -- 2.25.1