mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 03:47:16 +02:00
11 lines
150 B
C
11 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;
|
|
}
|