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