get hostnamed to show up on session bus, incomplete
[systembsd.git] / src / main.c
1 #include <gio/gio.h>
2 #include "modules/hostnamed/hostnamed.c"
3
4 int main() {
5 GMainLoop *loop;
6
7 hostnamed_init();
8
9 loop = g_main_loop_new(NULL, FALSE);
10 g_main_loop_run(loop);
11
12 return 0;
13 }