mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-27 12:22:26 +01:00
libtls extricated from libressl, built against openssl. also, probably one of the ugliest hacks i have ever done.
12 lines
150 B
C
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;
|
|
}
|