#include <gnutls/gnutls.h>

int main (void)
{
  gnutls_global_init ();

  /* Your code 
   */


  gnutls_global_deinit ();

  return 0;
}

