Loading...
--- Libc/Libc-1725.40.4/tests/mktemp.c
+++ Libc/Libc-1158.1.2/tests/mktemp.c
@@ -18,7 +18,7 @@
 
 static void test_mkostemp(int oflags);
 
-T_DECL(mkstemp, "basic mkstemp test")
+T_DECL(test_mkstemp, "basic mkstemp test")
 {
 	char path[sizeof(template)];
 	struct stat path_stat;
@@ -89,7 +89,7 @@
 			"close must succeed for the second fd");
 }
 
-T_DECL(mktemp, "basic mktemp test")
+T_DECL(test_mktemp, "basic mktemp test")
 {
 	char path[sizeof(template)];
 
@@ -103,7 +103,7 @@
 			template, path);
 }
 
-T_DECL(mkdtemp, "basic mkdtemp test")
+T_DECL(test_mkdtemp, "basic mkdtemp test")
 {
 	char path[sizeof(template)];
 	struct stat dstat;
@@ -198,7 +198,7 @@
 // always does T_SKIP on OS X yields another issue. The compiler starts
 // demanding to mark the test function definition as noreturn. Just
 // don't compile the testcase for OS X.
-T_DECL(mkstemp_dprotected_np, "basic mkstemp_dprotected_np test")
+T_DECL(test_mkstemp_dprotected_np, "basic mkstemp_dprotected_np test")
 {
 	char path[sizeof(template)];
 	int fd;