From 8640a07a359ea3cca62d57f2da28eb9b1305a0d5 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Thu, 2 Jul 2009 01:47:14 -0300 Subject: [PATCH] Make some internal functions static. --- tcp_connect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.20.1