first.c compilet en draait!
[rodin/chimara.git] / src / glk.c
1 #include <glib.h>
2 #include <gtk/gtk.h>
3
4 #include "glk.h"
5
6 /**
7  * glk_exit:
8  * 
9  * End the Glk program. As far as the client program is concerned, this
10  * function does not return.
11  */
12 void
13 glk_exit(void)
14 {
15         g_thread_exit(NULL);
16 }
17
18 /*
19 void
20 glk_select(event_t *event)
21 {
22         gtk_main_iteration();
23 }
24 */
25
26