Added 'static' and 'G_GNUC_INTERNAL' to hide all symbols that shouldn't be exported
[projects/chimara/chimara.git] / src / abort.c
index 4ae157addacc1eeed2b0ac92710c2d04cc8a446e..61234a06f5743747687e6fbf397763dae528598c 100644 (file)
@@ -34,7 +34,7 @@ glk_set_interrupt_handler(void (*func)(void))
 
 /* Internal function: abort this Glk program, freeing resources and calling the
 user's interrupt handler. */
-void
+static void
 abort_glk()
 {
        if(glk_data->interrupt_handler)
@@ -69,5 +69,3 @@ check_for_abort()
        }
        g_mutex_unlock(glk_data->abort_lock);
 }
-
-