summaryrefslogtreecommitdiffstats
path: root/bus/test-registry.c
blob: fdcbba87deb137a96f31f9957341fd46b82f7e6e (plain)
1
2
3
4
5
6
7
8
9
#include "registry.h"

int main()
{
	g_type_init ();
	BusRegistry *registry = bus_registry_new ();
	g_object_unref (registry);
	return 0;
}