From: Guillermo J. Rozas Date: Mon, 20 Jan 1992 18:05:34 +0000 (+0000) Subject: Fix conflicting declaration. X-Git-Tag: 20090517-FFI~9957 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=836807b8a918ef8dbce1bdedaad88646c1dd643c;p=mit-scheme.git Fix conflicting declaration. --- diff --git a/v7/src/microcode/uxio.c b/v7/src/microcode/uxio.c index 5103a74e1..2ce1d43b3 100644 --- a/v7/src/microcode/uxio.c +++ b/v7/src/microcode/uxio.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxio.c,v 1.15 1992/01/20 17:02:58 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxio.c,v 1.16 1992/01/20 18:05:34 jinx Exp $ Copyright (c) 1990-1992 Massachusetts Institute of Technology @@ -368,6 +368,9 @@ enum select_input DEFUN (UX_select_input, (fd, blockp), int fd AND int blockp) { #ifdef HAVE_SELECT + extern int EXFUN (select, + (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *, + struct timeval)); extern int EXFUN (UX_process_any_status_change, (void)); int status_change_p; int nfds; @@ -382,8 +385,8 @@ DEFUN (UX_select_input, (fd, blockp), int fd AND int blockp) (nfds, ((status_change_p = (UX_process_any_status_change ())) ? ((errno = EINTR), (-1)) - : (select (FD_SETSIZE, (&readable), 0, 0, - (blockp ? 0 : (&zero_timeout)))))); + : (UX_select (FD_SETSIZE, (&readable), 0, 0, + (blockp ? 0 : (&zero_timeout)))))); if (nfds > 0) return ((FD_ISSET (fd, (&readable)))