]> granicus.if.org Git - check/commitdiff
Declared local functions static (based on a patch from Gilgamesh Nootebos).
authorneo23 <neo23@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Fri, 10 May 2002 12:01:44 +0000 (12:01 +0000)
committerneo23 <neo23@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Fri, 10 May 2002 12:01:44 +0000 (12:01 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@140 64e312b2-a51f-0410-8e61-82d0ca0eb02a

check/src/check_msg.c

index abeabb2df9bc70c3a61485139c1167b4aa43d09c..3559434e4d5dbed64a6af8f3c06c4a851a4ba320 100644 (file)
@@ -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);