aports/community/libretls/test_program.c
Jakub Jirutka 6594bf3204 community/libretls: move from main
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).
2025-09-13 00:13:59 +02: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;
}