File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / example / Attic / disp.c
Revision 1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Tue Nov 22 14:48:25 2011 UTC (12 years, 7 months ago) by misho
Branches: mqtt1_0
add test for dispatcher calls

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include "aitmqtt.h"


int
main(int argc, char **argv)
{
	mqtt_cb_t *cbs;

	cbs = mqttInitCallbacks();
	if (!cbs)
		return 2;

	mqttFiniCallbacks(&cbs);
	return 0;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>