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