build UPDATE use c99 standard instead of gnu99

GNU extensions are not mandatory for a long time now.
diff --git a/tests/client/test_client_tls.c b/tests/client/test_client_tls.c
index 0f2b2e7..a3fd4b7 100644
--- a/tests/client/test_client_tls.c
+++ b/tests/client/test_client_tls.c
@@ -1,3 +1,19 @@
+/**
+ * @file test_client_tls.c
+ * @author David Sedlák <xsedla1d@stud.fit.vutbr.cz>
+ * @brief client TLS test
+ *
+ * Copyright (c) 2018 CESNET, z.s.p.o.
+ *
+ * This source code is licensed under BSD 3-Clause License (the "License").
+ * You may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     https://opensource.org/licenses/BSD-3-Clause
+ */
+
+#define _GNU_SOURCE
+
 #include <errno.h>
 #include <setjmp.h>
 #include <stdio.h>