mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 03:12:22 +01:00
LibreTLS hasn't been updated for ~2 years. The latest version is 3.8.1 which is based on LibreSSL 3.8.1 (the latest stable is 4.1.0).
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;
|
|
}
|