File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / example / Attic / disp.c
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Fri Jan 27 15:05:38 2012 UTC (13 years, 10 months ago) by misho
Branches: MAIN
CVS tags: mqtt1_1, HEAD
added new files

#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>