summaryrefslogtreecommitdiffstats
path: root/avahi-client/client.c
blob: 949e5ef39336558c76ec018543a39d4ce8618c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <avahi-client/client.h>

AvahiClient *
avahi_client_new ()
{
	AvahiClient *tmp;

	tmp = g_new0 (AvahiClient, 1);

	return tmp;
}