From 1dcc48ff120a823cdd291885dbc3e1f37a63d62d Mon Sep 17 00:00:00 2001 From: neo23 Date: Fri, 10 May 2002 12:01:44 +0000 Subject: [PATCH] Declared local functions static (based on a patch from Gilgamesh Nootebos). git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@140 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- check/src/check_msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check/src/check_msg.c b/check/src/check_msg.c index abeabb2..3559434 100644 --- a/check/src/check_msg.c +++ b/check/src/check_msg.c @@ -261,7 +261,7 @@ static void setup_pipe (Pipe *p) fcntl (p->sendfd, F_SETFL, O_NONBLOCK); } -void setup_messaging_with_key (MsgKey *key) +static void setup_messaging_with_key (MsgKey *key) { PipeEntry *pe; @@ -287,7 +287,7 @@ void setup_messaging_with_key (MsgKey *key) eprintf ("Only one nesting of suite runs supported", __FILE__, __LINE__); } -void teardown_messaging_with_key (MsgKey *key) +static void teardown_messaging_with_key (MsgKey *key) { PipeEntry *pe = get_pe_by_key (key); -- 2.50.1