From 440c0c06bf316735057c37274fd8de8fe7f0700b Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Thu, 18 Nov 1993 00:35:24 +0000 Subject: [PATCH] gcc complains about a type mismatch when declaring select on the RS6000. --- v7/src/microcode/uxio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/uxio.c b/v7/src/microcode/uxio.c index 77b386fbb..a65f1e84c 100644 --- a/v7/src/microcode/uxio.c +++ b/v7/src/microcode/uxio.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: uxio.c,v 1.32 1993/10/27 22:18:36 gjr Exp $ +$Id: uxio.c,v 1.33 1993/11/18 00:35:24 gjr Exp $ Copyright (c) 1990-1993 Massachusetts Institute of Technology @@ -368,7 +368,7 @@ DEFUN (OS_channel_blocking, (channel), Tchannel channel) /* select(2) system call */ -#if (defined(_HPUX) && (_HPUX_VERSION >= 80)) || defined(_SUNOS4) +#if (defined(_HPUX) && (_HPUX_VERSION >= 80)) || defined(_SUNOS4) || defined(_AIX) #define SELECT_DECLARED #endif -- 2.25.1