Fix conflicting declaration.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 20 Jan 1992 18:05:34 +0000 (18:05 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 20 Jan 1992 18:05:34 +0000 (18:05 +0000)
v7/src/microcode/uxio.c

index 5103a74e1df24117dd61aa835bf8684fd78cbd9d..2ce1d43b3b4df5e6e3bbce1a460935d870ed1c5f 100644 (file)
@@ -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)))