aboutsummaryrefslogtreecommitdiffstats
path: root/main/libtls-standalone/test_program.c
blob: f8d7332d72500c83f436b54462a7c1ee574ace71 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdlib.h>
#include <assert.h>
#include <tls.h>

int
main(int argc, const char *argv[])
{
	assert(tls_init() == 0);

	return EXIT_SUCCESS;
}