Make some internal functions static.
authorThadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Thu, 2 Jul 2009 04:47:14 +0000 (01:47 -0300)
committerThadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Thu, 2 Jul 2009 04:47:14 +0000 (01:47 -0300)
tcp_connect.c

index 1f62c97..99e12d4 100644 (file)
@@ -24,7 +24,7 @@
 #include <string.h>
 #include <unistd.h>
 
-int
+static int
 tcp_connect (struct addrinfo *ai)
 {
   int fd;
@@ -39,7 +39,7 @@ tcp_connect (struct addrinfo *ai)
   return fd;
 }
 
-int
+static int
 tcp_connect_list (struct addrinfo *ai)
 {
   int fd = -1;