Use "#include <errno.h>" instead of "extern int errno;". Suggested by
authorDan Harkless <dan@harkless.org>
Thu, 13 May 1999 01:31:00 +0000 (01:31 +0000)
committerDan Harkless <dan@harkless.org>
Thu, 13 May 1999 01:31:00 +0000 (01:31 +0000)
Stephen Wilson Bailey <swb@nconnect.net>

mts/sendmail/sendmail.c
mts/smtp/smtp.c
sbr/error.c
uip/ftpsbr.c
uip/popsbr.c
uip/vmhsbr.c
zotnet/mts/client.c

index 7556503..1ff4138 100644 (file)
@@ -9,6 +9,9 @@
 #include <mts/smtp/smtp.h>
 #include <zotnet/mts/mts.h>
 #include <signal.h>
+#ifdef MPOP
+#include <errno.h>
+#endif
 
 /*
  * This module implements an interface to SendMail very similar
@@ -74,10 +77,6 @@ static char *sm_moreply = "; ";
 
 struct smtp sm_reply;          /* global... */
 
-#ifdef MPOP
-extern int errno;
-#endif
-
 static int doingEHLO;
 
 #define        MAXEHLO 20
index f775638..e2f6574 100644 (file)
@@ -9,6 +9,9 @@
 #include "smtp.h"
 #include <zotnet/mts/mts.h>
 #include <signal.h>
+#ifdef MPOP
+#include <errno.h>
+#endif
 
 /*
  * This module implements an interface to SendMail very similar
@@ -71,10 +74,6 @@ static char *sm_moreply = "; ";
 
 struct smtp sm_reply;          /* global... */
 
-#ifdef MPOP
-extern int errno;
-#endif
-
 
 #define        MAXEHLO 20
 
index 0e02f2a..41f031a 100644 (file)
@@ -12,7 +12,7 @@
 # include <sys/uio.h>
 #endif
 
-extern int errno;
+#include <errno.h>
 
 
 /*
index d36e0e5..671a533 100644 (file)
@@ -27,6 +27,7 @@ extern int v_verbose;
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <netdb.h>
+#include <errno.h>
 
 #if defined(BIND) && !defined(h_addr)
 # define h_addr        h_addr_list[0]
@@ -35,8 +36,6 @@ extern int v_verbose;
 #define        inaddr_copy(hp,sin) \
     memcpy((char *) &((sin)->sin_addr), (hp)->h_addr, (hp)->h_length)
 
-extern int errno;
-
 #define        start_tcp_client(sock,priv) \
        socket (AF_INET, SOCK_STREAM, 0)
 
index 6b026c6..0b0551d 100644 (file)
 #include <h/popsbr.h>
 #include <h/signals.h>
 #include <signal.h>
+#include <errno.h>
 
 #define        TRM     "."
 #define        TRMLEN  (sizeof TRM - 1)
 
-extern int errno;
-
 static int poprint = 0;
 static int pophack = 0;
 
index 664c388..8ef0310 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <h/mh.h>
 #include <h/vmhsbr.h>
+#include <errno.h>
 
 static char *types[] = {
     "OK",
@@ -24,8 +25,6 @@ static        FILE *fp = NULL;
 static int PEERrfd = NOTOK;
 static int PEERwfd = NOTOK;
 
-extern int  errno;
-
 /*
  * static prototypes
  */
index 6d86057..b9679e9 100644 (file)
@@ -35,8 +35,6 @@
 #define        MAXNETS      5
 #define        MAXHOSTS    25
 
-extern int errno;
-
 struct addrent {
     int a_addrtype;            /* assumes AF_INET for inet_netof () */
     union {