diff options
Diffstat (limited to 'bus/test-registry.c')
-rw-r--r-- | bus/test-registry.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bus/test-registry.c b/bus/test-registry.c new file mode 100644 index 0000000..fdcbba8 --- /dev/null +++ b/bus/test-registry.c @@ -0,0 +1,9 @@ +#include "registry.h" + +int main() +{ + g_type_init (); + BusRegistry *registry = bus_registry_new (); + g_object_unref (registry); + return 0; +} |