mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
8 lines
169 B
C
8 lines
169 B
C
|
#include <gio/gio.h>
|
||
|
int main (int argc, char *argv[])
|
||
|
{
|
||
|
if (g_tls_backend_supports_tls (g_tls_backend_get_default()))
|
||
|
return 0;
|
||
|
else
|
||
|
return 1;
|
||
|
}
|