]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix some compilation errors with the gcc compiler, fix some recent warnings.
authorKees van Reeuwijk <reeuwijk@few.vu.nl>
Thu, 22 Apr 2010 13:59:34 +0000 (13:59 +0000)
committerKees van Reeuwijk <reeuwijk@few.vu.nl>
Thu, 22 Apr 2010 13:59:34 +0000 (13:59 +0000)
drivers/tty/tty.c
lib/libc/ip/res_send.c
servers/is/glo.h

index 78e595b51de465f0b4335285a7568e7544900854..ceadd5f7e08d6fcf0f24988d32410bc82fae3c5e 100644 (file)
@@ -1036,9 +1036,10 @@ register tty_t *tp;              /* pointer to terminal to read from */
 /*===========================================================================*
  *                             in_process                                   *
  *===========================================================================*/
-PRIVATE void in_process_send_byte(tp, ch)
-tty_t *tp;     /* terminal on which character has arrived */
-int ch;                /* input character */
+PRIVATE void in_process_send_byte(
+  tty_t *tp,   /* terminal on which character has arrived */
+  int ch       /* input character */
+)
 {
        /* Save the character in the input queue. */
        *tp->tty_inhead++ = ch;
index 5bc3101f90ed40312aa076758a8d44c8e30b1f12..7e5c47c174804ac43f92620ebf4b7962931f0a49 100644 (file)
@@ -86,6 +86,8 @@ static int udp_sendto _ARGS(( int fd, const char *buf, unsigned buflen,
                                ipaddr_t addr, udpport_t port ));
 static int udp_receive _ARGS(( int fd, char *buf, unsigned buflen,
                                time_t timeout ));
+static int tcpip_writeall _ARGS((int fd, const char *buf, size_t siz));
+static int tcp_connect _ARGS((ipaddr_t host, tcpport_t port, int *terrno));
 
 #endif /* !_MINIX */
 
@@ -755,10 +757,7 @@ static int tcp_connect(ipaddr_t host, tcpport_t port, int *terrno)
        return fd;
 }
 
-static int tcpip_writeall(fd, buf, siz)
-int fd;
-const char *buf;
-size_t siz;
+static int tcpip_writeall(int fd, const char *buf, size_t siz)
 {
        size_t siz_org;
        int nbytes;
index 718e0e3d07a9d2f729920934d12ea85001605882..ad5b06d709a64647fa7a830466a52086649a1cb8 100644 (file)
@@ -10,9 +10,5 @@ extern int diag_size;                 /* size of all messages */
 extern int sys_panic;          /* if set, shutdown can be done */
 
 /* The parameters of the call are kept here. */
-extern message m_in;           /* the input message itself */
-extern message m_out;          /* the output message used for reply */
-extern int who_e;              /* caller's proc number */
-extern int callnr;             /* system call number */
 extern int dont_reply;         /* normally 0; set to 1 to inhibit reply */