From: Brian Norris <banorris@uci.edu>
Date: Wed, 11 Jul 2012 21:57:16 +0000 (-0700)
Subject: main: make function static
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6229fece25a438e469a9fbf1042ea56fa4e3e3f4;p=cdsspec-compiler.git

main: make function static
---

diff --git a/main.cc b/main.cc
index b38f7ef..3dff4f4 100644
--- a/main.cc
+++ b/main.cc
@@ -51,7 +51,7 @@ static void thread_wait_finish(void) {
 
 /** The real_main function contains the main model checking loop. */
 
-void real_main() {
+static void real_main() {
 	thrd_t user_thread;
 	ucontext_t main_context;