From: Thadeu Lima de Souza Cascardo Date: Thu, 2 Jul 2009 04:47:14 +0000 (-0300) Subject: Make some internal functions static. X-Git-Tag: v0.1.3~75 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Frnetproxy.git;a=commitdiff_plain;h=8640a07a359ea3cca62d57f2da28eb9b1305a0d5 Make some internal functions static. --- diff --git a/tcp_connect.c b/tcp_connect.c index 1f62c97..99e12d4 100644 --- a/tcp_connect.c +++ b/tcp_connect.c @@ -24,7 +24,7 @@ #include #include -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;