/** @addtogroup TLC_SAMPLE_ROT13
 * @{
 * @file
 * Application main for the sample ROT13 trustlet connector.
 *
 * <!-- Copyright Giesecke & Devrient GmbH 2009,2010 -->
 */

#include <stdio.h>
#include <dlfcn.h>
#include <stdlib.h>

#include "tlc_basedef.h"


int main()
{
	char* name = "libtad.so";
	printf("test start\n");
	void* handler = dlopen(name, RTLD_NOW);
	printf("handler:%x\n", handler);
	printf("dlopen error:%s\n", dlerror());
	return 0;
}
