syncing between computers..
[systembsd.git] / src / main.c
1 #include <gio/gio.h>
2 #include "interfaces/hostnamed/hostnamed.c"
3
4 int main() {
5 GMainLoop *mloop = NULL;
6
7 mloop = g_main_loop_new(NULL, FALSE);
8 hostnamed_init();
9 g_main_loop_run(mloop);
10
11 return 0;
12 }