William Pitcock b8e9780813 testing/libtls-standalone: new aport
libtls extricated from libressl, built against openssl.
also, probably one of the ugliest hacks i have ever done.
2018-10-13 11:38:52 -05:00

12 lines
150 B
C

#include <stdlib.h>
#include <assert.h>
#include <tls.h>
int
main(int argc, const char *argv[])
{
assert(tls_init() == 0);
return EXIT_SUCCESS;
}